linux主機上開啟流慢

2021-07-16 10:23:12 字數 1629 閱讀 6083

2016-08-10

問題描述:

有段**是訪問乙個介面獲取返回的json資料的。在windows開發電腦上很快,在linux上就很慢

.println("--開啟網頁:"+(end1 - start)+"毫秒");

// connection.connect();

//dataoutputstream out = new dataoutputstream(connection.getoutputstream());

// printwriter out = new printwriter(new outputstreamwriter(connection.getoutputstream(),"utf-8"));

printwriter out = new printwriter(connection.getoutputstream());

long end3 = system.currenttimemillis();

system.out

out.write(param);

out.flush();

out.close();

long end = system.currenttimemillis();

system.out

long start2 = system.currenttimemillis();

bufferedreader reader = new bufferedreader(new inputstreamreader(connection.getinputstream(),"utf-8"));

string lines = null;

stringbuffer sb = new stringbuffer("");

while ((lines = reader.readline()) != null)

result = sb.tostring();

long end2 = system.currenttimemillis();

system.out

reader.close();windows上

--開啟網頁:0毫秒
在linux主機上

--開啟網頁:0毫秒
難道是網路原因麼?5秒也太難以接受了!什麼鬼?

解決「正在解析主機」上網慢問題

如題,最近上網時,開啟一網頁總是很慢 每次都出現 正在解析主機 的字樣,然後反應好幾秒才可以。之前都是秒開網頁的,雖然用的是無線網,但是家用網百m也夠了。於是 開始嘗試解決這個問題。網頁解析慢通常是dns的問題,如果dns設定正常還有問題,那麼可以檢查下是否與多網絡卡配置有關。想到自己最近在學big...

Linux 主機上的使用者訊息傳遞

1 查詢使用者 之前學習過的id和finger都可以以進行查詢使用者的相關資料,最簡單的還可以使用last檢視 使用命令 w 命令 who 命令 lastlog 查詢賬號的登入情況 2 使用者對談 write mesg wall 命令 write 使用者賬號 使用者所在的終端介面 與使用者交流 例 ...

Linux 主機上的使用者資訊傳遞

linux 主機上的使用者資訊傳遞,查詢使用者 w,who,last,lastlog last 列出登陸者資訊 w who 目前誰在系統上 lastlog 每個賬號的最近登入時間,var log lastlog 使用者對談 write,mesg,wall write 使用者賬號 所在終端介面 mes...