導航:首頁 > 編程語言 > javaurl時間

javaurl時間

發布時間:2023-08-17 01:43:52

1. 在java中怎麼獲取北京時間各位不要吝嗇!

//這是通過網路獲取北京時間的方法
java.util.Locale locale=java.util.Locale.CHINA; //這是獲得本地中國時區

String pattern = "yyyy-MM-dd kk:mm:ss zZ";//這是日期格式
java.text.SimpleDateFormat df = new java.text.SimpleDateFormat(pattern,locale);//設定日期格式
java.util.Date date = new java.util.Date();
java.net.URL url=new URL("http://www.bjtime.cn");//取得資源對象
java.net.URLConnection uc=url.openConnection();//生成連接對象
uc.connect(); //發出連接
long ld=uc.getDate(); //取得網站日期時間
date=new Date(ld); //轉換為標准時間對象
String bjTime = df.format(date);
System.out.println("北京時間:"+bjTime);

2. Java 把一個URL中的數據保存成本地文件,文件名為本機當前的系統時間

publicstaticStringdownloadLog(StringloadUrl,StringfileName)throwsException{
URLurl=newURL(loadUrl);

HttpURLConnectionconn=(HttpURLConnection)url.openConnection();

conn.setConnectTimeout(50*1000);

conn.setRequestProperty("User-Agent",
"Mozilla/4.0(compatible;MSIE5.0;WindowsNT;DigExt)");
InputStreaminputStream=null;
FileOutputStreamfos=null;
inputStream=conn.getInputStream();

//路徑目錄
FilesaveDir=newFile("D://test");
if(!saveDir.exists()){
saveDir.mkdirs();
}

Filefile=newFile(saveDir+File.separator+fileName);

fos=newFileOutputStream(file);
readInputStream(fos,inputStream);

returnfile.toString();
}


/**
*用流把數據寫到本地文件上
*
*@paraminputStream
*@return
*@throwsException
*@throwsIOException
*/
(FileOutputStreamfos,
InputStreaminputStream)throwsException{
byte[]buffer=newbyte[1024];
intlen=0;

try{
while((len=inputStream.read(buffer))!=-1){
fos.write(buffer,0,len);

}
fos.flush();

}catch(Exceptione){

logger.error("readInputStream文件可能太大導致");
thrownewException(e);

}finally{

try{

fos.close();
inputStream.close();
}catch(IOExceptione){

}
}

}

閱讀全文

與javaurl時間相關的資料

熱點內容
acmc用什麼編譯器 瀏覽:230
golangweb編譯部署 瀏覽:923
怎樣踩東西解壓 瀏覽:969
單片機核心板外接鍵盤 瀏覽:396
怎樣打開自己的微信文件夾 瀏覽:424
單片機紅外測距原理 瀏覽:268
phpxdebug擴展 瀏覽:757
建築樓層凈高演算法 瀏覽:1000
怎麼關閉智聯app求職狀態 瀏覽:418
pdf的文件夾怎麼列印 瀏覽:752
延拓演算法初值 瀏覽:786
首次適應演算法都不滿足的話怎麼辦 瀏覽:19
php56加密 瀏覽:556
金立手機app怎麼設置浮窗 瀏覽:496
程序員沒有社會地位 瀏覽:963
榮耀app怎麼解鎖 瀏覽:594
php程序員學歷 瀏覽:636
c語言編譯可以嗎 瀏覽:201
脂硯齋重評石頭記pdf 瀏覽:756
三星冰箱壓縮機哪裡產 瀏覽:429