亚洲精品久久久中文字幕-亚洲精品久久片久久-亚洲精品久久青草-亚洲精品久久婷婷爱久久婷婷-亚洲精品久久午夜香蕉

您的位置:首頁技術文章
文章詳情頁

Java/Android 實現簡單的HTTP服務器

瀏覽:3日期:2022-08-22 10:55:24

目前在對Android的代碼進行功能測試的時候,需要服務器返回一個數據來測試整個流程是否正確。不希望引入第三方的JAR包,因此需要一個特別簡單的HTTP服務器。

網上查詢了一下,找到可用的代碼如下:

import java.io.BufferedOutputStream;import java.io.BufferedReader;import java.io.File;import java.io.FileInputStream;import java.io.FileNotFoundException;import java.io.IOException;import java.io.InputStreamReader;import java.io.OutputStream;import java.io.PrintWriter;import java.net.ServerSocket;import java.net.Socket;import java.util.Date;import java.util.StringTokenizer;// The tutorial can be found just here on the SSaurel’s Blog : // https://www.ssaurel.com/blog/create-a-simple-http-web-server-in-java// Each Client Connection will be managed in a dedicated Threadpublic class JavaHTTPServer implements Runnable{ static final File WEB_ROOT = new File('.');static final String DEFAULT_FILE = 'index.html';static final String FILE_NOT_FOUND = '404.html';static final String METHOD_NOT_SUPPORTED = 'not_supported.html';// port to listen connectionstatic final int PORT = 8080;// verbose modestatic final boolean verbose = true;// Client Connection via Socket Classprivate Socket connect;public JavaHTTPServer(Socket c) {connect = c;}public static void main(String[] args) {try {ServerSocket serverConnect = new ServerSocket(PORT);System.out.println('Server started.nListening for connections on port : ' + PORT + ' ...n');// we listen until user halts server executionwhile (true) {JavaHTTPServer myServer = new JavaHTTPServer(serverConnect.accept());if (verbose) {System.out.println('Connecton opened. (' + new Date() + ')');}// create dedicated thread to manage the client connectionThread thread = new Thread(myServer);thread.start();}} catch (IOException e) {System.err.println('Server Connection error : ' + e.getMessage());}}@Overridepublic void run() {// we manage our particular client connectionBufferedReader in = null; PrintWriter out = null; BufferedOutputStream dataOut = null;String fileRequested = null;try {// we read characters from the client via input stream on the socketin = new BufferedReader(new InputStreamReader(connect.getInputStream()));// we get character output stream to client (for headers)out = new PrintWriter(connect.getOutputStream());// get binary output stream to client (for requested data)dataOut = new BufferedOutputStream(connect.getOutputStream());// get first line of the request from the clientString input = in.readLine();// we parse the request with a string tokenizerStringTokenizer parse = new StringTokenizer(input);String method = parse.nextToken().toUpperCase(); // we get the HTTP method of the client// we get file requestedfileRequested = parse.nextToken().toLowerCase();// we support only GET and HEAD methods, we checkif (!method.equals('GET') && !method.equals('HEAD')) {if (verbose) {System.out.println('501 Not Implemented : ' + method + ' method.');}// we return the not supported file to the clientFile file = new File(WEB_ROOT, METHOD_NOT_SUPPORTED);int fileLength = (int) file.length();String contentMimeType = 'text/html';//read content to return to clientbyte[] fileData = readFileData(file, fileLength);// we send HTTP Headers with data to clientout.println('HTTP/1.1 501 Not Implemented');out.println('Server: Java HTTP Server from SSaurel : 1.0');out.println('Date: ' + new Date());out.println('Content-type: ' + contentMimeType);out.println('Content-length: ' + fileLength);out.println(); // blank line between headers and content, very important !out.flush(); // flush character output stream buffer// filedataOut.write(fileData, 0, fileLength);dataOut.flush();} else {// GET or HEAD methodif (fileRequested.endsWith('/')) {fileRequested += DEFAULT_FILE;}File file = new File(WEB_ROOT, fileRequested);int fileLength = (int) file.length();String content = getContentType(fileRequested);if (method.equals('GET')) { // GET method so we return contentbyte[] fileData = readFileData(file, fileLength);// send HTTP Headersout.println('HTTP/1.1 200 OK');out.println('Server: Java HTTP Server from SSaurel : 1.0');out.println('Date: ' + new Date());out.println('Content-type: ' + content);out.println('Content-length: ' + fileLength);out.println(); // blank line between headers and content, very important !out.flush(); // flush character output stream bufferdataOut.write(fileData, 0, fileLength);dataOut.flush();}if (verbose) {System.out.println('File ' + fileRequested + ' of type ' + content + ' returned');}}} catch (FileNotFoundException fnfe) {try {fileNotFound(out, dataOut, fileRequested);} catch (IOException ioe) {System.err.println('Error with file not found exception : ' + ioe.getMessage());}} catch (IOException ioe) {System.err.println('Server error : ' + ioe);} finally {try {in.close();out.close();dataOut.close();connect.close(); // we close socket connection} catch (Exception e) {System.err.println('Error closing stream : ' + e.getMessage());} if (verbose) {System.out.println('Connection closed.n');}}}private byte[] readFileData(File file, int fileLength) throws IOException {FileInputStream fileIn = null;byte[] fileData = new byte[fileLength];try {fileIn = new FileInputStream(file);fileIn.read(fileData);} finally {if (fileIn != null) fileIn.close();}return fileData;}// return supported MIME Typesprivate String getContentType(String fileRequested) {if (fileRequested.endsWith('.htm') || fileRequested.endsWith('.html'))return 'text/html';elsereturn 'text/plain';}private void fileNotFound(PrintWriter out, OutputStream dataOut, String fileRequested) throws IOException {File file = new File(WEB_ROOT, FILE_NOT_FOUND);int fileLength = (int) file.length();String content = 'text/html';byte[] fileData = readFileData(file, fileLength);out.println('HTTP/1.1 404 File Not Found');out.println('Server: Java HTTP Server from SSaurel : 1.0');out.println('Date: ' + new Date());out.println('Content-type: ' + content);out.println('Content-length: ' + fileLength);out.println(); // blank line between headers and content, very important !out.flush(); // flush character output stream bufferdataOut.write(fileData, 0, fileLength);dataOut.flush();if (verbose) {System.out.println('File ' + fileRequested + ' not found');}}}

以上就是Java/Android 實現簡單的HTTP服務器的詳細內容,更多關于Java/Android HTTP服務器的資料請關注好吧啦網其它相關文章!

標簽: Java
相關文章:
主站蜘蛛池模板: 国产大秀视频一区二区三区 | 久久婷婷色香五月综合激情 | 日韩国产欧美在线观看 | 日韩美一区二区 | 成人精品一区二区久久久 | 风间中文字幕亚洲一区中文馆 | 国产a级免费 | 亚洲视频一二三 | 免费一看一级毛片人 | 999成人精品视频在线 | 亚洲色图视频在线观看 | qvod高清在线成人观看 | 日本一本色道免费视频 | 亚洲综合男人的天堂色婷婷 | 欧美日韩免费在线 | 女教师的一级毛片 | 亚洲午夜国产精品无卡 | 99xxoo视频在线永久免费观看 | 国产欧美专区在线观看 | 高清毛片在线看高清 | 日韩免费视频观看 | 亚洲1区 | 久久国产精品1区2区3区网页 | 日本一级毛片免费完整视频2020 | a级毛片在线视频免费观看 a级毛片在线播放 | 东京不热视频在线观看 | 日本欧美一区二区三区免费不卡 | 日韩精品免费 | 亚洲国产精品视频在线观看 | 97在线视频99播放 | 国内精品一区二区 | 免费一级毛片免费播放 | 国产区在线免费观看 | 手机看片日韩日韩国产在线看 | 五月婷婷俺也去开心 | 三级国产在线 | 国产一区二区日韩欧美在线 | 欧美一级欧美一级在线播放 | 97色老99久久九九爱精品 | 国产一区二区免费在线 | 处初女处夜情视频在线观看 |