91av视频/亚洲h视频/操亚洲美女/外国一级黄色毛片 - 国产三级三级三级三级

  • 大小: 937KB
    文件類型: .zip
    金幣: 1
    下載: 0 次
    發(fā)布日期: 2021-01-02
  • 語言: Java
  • 標(biāo)簽: java??tcp??http??web??

資源簡(jiǎn)介

使用Java編寫的一個(gè)簡(jiǎn)易多線程HTTP服務(wù)器 源代碼寫于2018年5月份,計(jì)算機(jī)網(wǎng)絡(luò)課程的實(shí)驗(yàn)作業(yè) 代碼bug較多,歡迎各位dalao指教

資源截圖

代碼片段和文件信息

package?HttpServer;

import?java.io.IOException;
import?java.io.InputStream;
import?java.io.OutputStream;
import?java.net.Socket;

public?class?HttpProcessor?extends?Thread?{
private?Socket?socket;

public?HttpProcessor(Socket?socket)?{
this.socket?=?socket;
}

@Override
public?void?run()?{
InputStream?input?=?null;
OutputStream?output?=?null;

try?{
input?=?socket.getInputStream();
output?=?socket.getOutputStream();

HttpRequest?request?=?new?HttpRequest(input);//?創(chuàng)建一個(gè)對(duì)象來處理HTTP請(qǐng)求
new?HttpResponse(output?request);//?創(chuàng)建一個(gè)對(duì)象來生成HTTP響應(yīng)信息并發(fā)送給瀏覽器
input.close();
output.close();
socket.close();

}?catch?(IOException?e)?{
e.printStackTrace();
}

}

}

?屬性????????????大小?????日期????時(shí)間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2018-11-15?02:44??simple-multithreading-httpserver-master\
?????文件????????1057??2018-11-15?02:44??simple-multithreading-httpserver-master\LICENSE
?????文件?????????202??2018-11-15?02:44??simple-multithreading-httpserver-master\README.md
?????目錄???????????0??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\
?????目錄???????????0??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\
?????文件????????8253??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\example.css
?????文件???????10201??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\example.js
?????目錄???????????0??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\
?????文件????????1697??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_footer.png
?????文件????????1697??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_footer_link.png
?????文件?????????748??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_intro.png
?????文件???????15352??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_actionSheet.png
?????文件?????????425??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_article.png
?????文件????????1232??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_button.png
?????文件?????????196??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_cell.png
?????文件?????????838??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_dialog.png
?????文件?????????924??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_feedback.png
?????文件????????1391??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_flow.png
?????文件?????????200??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_form.png
?????文件????????1735??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_icons.png
?????文件?????????357??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_layout.png
?????文件?????????924??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_msg.png
?????文件?????????579??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_nav.png
?????文件?????????669??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_panel.png
?????文件?????????548??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_progress.png
?????文件????????1068??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_search.png
?????文件????????1445??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_search_bar.png
?????文件?????????495??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_special.png
?????文件?????????521??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_tab.png
?????文件?????????701??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_toast.png
?????文件?????????388??2018-11-15?02:44??simple-multithreading-httpserver-master\WWWROOT\example\images\icon_nav_z-index.png
............此處省略38個(gè)文件信息

評(píng)論

共有 條評(píng)論