1.時間格式和字串的轉化:
******dateformat sdf = new ******dateformat("yyyy-mm-dd hh:mm:ss");
// 時間格式轉化為字串
string newtime = sdf.format(new date());
try catch (parseexception e1)
2.獲取螢幕的尺寸:
dimension screensize = toolkit.getdefaulttoolkit().getscreensize();
int widthsize = (int) screensize.getwidth();
int heightsize = (int) screensize.getheight();
3.縮放
imageicon imageicon = new imageicon("src/local/myphotos/" + filenames[photono]);
image image = imageicon.getimage();
image = image.getscaledinstance(widthsize / 1024 * 750,
heightsize / 768 * 370, image.scale_default);
//imageicon = new imageicon(image);
imageicon.setimage(image);
imagelabel.seticon(imageicon);
4.執行緒
// 當前執行緒休息1秒
thread.sleep(1000);
5.獲取n位驗證碼
6.socket程式設計
客戶端:
伺服器端:
/*** 以位元組流向客戶端傳送檔案流
*/private void sendfilestreambybyte(file file,socket client)
fis.close();
dos.close();
} catch (ioexception e)
}/**
* 以字元流向客戶端傳送檔案流
*/private void sendfilestreambychar(file file,socket client)
bw.close();
br.close();
osw.close();
} catch (ioexception e)
}7.socket程式設計中一次接收並反饋資訊的過程:
/*** 伺服器端 先接收客戶端的請求,再向客戶端反饋資訊
* serversocket sst=new serversocket(8821);
* socket client=sst.accept();
* 客戶端 傳送請求給伺服器,再接收伺服器端的反饋資訊
* socket client = new socket("127.0.0.1", 8821);
*/private string ttt(string sendmes,socket client)
catch (ioexception e)
return receivemes;
}8.新增監聽:
第一種:
songmusiclist.addmouselistener(new mouseadapter()
}});
第二種:實現mouselistener介面
mymusiclist.addmouselistener(this);
@override
public void mouseclicked(mouseevent e) else if (e.getsource() == songmusiclist)
} }
9.重新命名檔案:
//tofiles新檔案路徑,filename新檔名
file.renameto(new file(tofiles,filename));
jQuery 知識點積累
1.判斷checkbox是否選中 aa prop checked true 2.給屬性賦值 aa prop checked true aa prop readonly true aa prop disabled true prop 只能返回true和false,對於一般bool型別使用prop,否則...
知識點積累1
1單引號,雙引號,三引號的區別 2 什麼是lambda?它有什麼作用?3 python的四大資料型別 4 os庫的簡單介紹 5幾種常用的設計模式和應用的場景 6 django和tornado的區別 7 解釋下http協議 8 python2和python3的區別 9 正則裡面match和search...
面試知識點積累
int n強制轉化成乙個int的引用,編輯器會把變數n對應的內容起始位址裡的資料按照int變數的資料組織方式去解析。float n 1.0f cout int n11065353216 false 1.0f 二進位制 0011 1111 1000 0000 0000 0000 0000 0000 0...