有恒ccs

导航

01 2022 档案

java本地文件复制
摘要:String strFilePath="本地路径" 1.获取文件名 File tempFile =new File( strFilePath.trim()); String fileName = tempFile.getName(); 2.复制本地文件 方法一: String mburl="docm 阅读全文

posted @ 2022-01-23 12:58 有恒ccs 阅读(153) 评论(0) 推荐(0)

ajax参数意义
摘要:function(){ $.ajax({ type: "GET", url: "test.json", data: {username:$("#username").val(), content:$("#content").val()}, dataType: "json", success: fun 阅读全文

posted @ 2022-01-16 23:31 有恒ccs 阅读(49) 评论(0) 推荐(0)

java http请求方式
摘要:方式一: URL restServiceURL = new URL(URL+URl); HttpURLConnection httpConnection = (HttpURLConnection) restServiceURL.openConnection(); httpConnection.set 阅读全文

posted @ 2022-01-05 19:12 有恒ccs 阅读(120) 评论(0) 推荐(0)