⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 response.java

📁 《面向对象的Java网络编程》的源代码 源代码
💻 JAVA
字号:
package WebServer;import java.io.OutputStream;import java.io.IOException;import java.io.FileInputStream;import java.io.File;public class Response {  	private static final int BUFFER_SIZE = 1024;  	Request request;  	OutputStream output;  	public Response(OutputStream output) {    	this.output = output;  	}  	public void setRequest(Request request) {    	this.request = request;  	}  	public void sendStaticResource() throws IOException {	    byte[] bytes = new byte[BUFFER_SIZE];	    FileInputStream fis = null;	    try {      		File file = new File(HttpsServer.WEB_ROOT, request.getUri());      		if (file.exists()) {        		fis = new FileInputStream(file);        		int ch = fis.read(bytes, 0, BUFFER_SIZE);        		while (ch!=-1) {          			output.write(bytes, 0, ch);          			ch = fis.read(bytes, 0, BUFFER_SIZE);        		}      		}      		else {        		// file not found        		String errorMessage = "HTTP/1.1 404 File Not Found\r\n" +          		"Content-Type: text/html\r\n" +          		"Content-Length: 23\r\n" +          		"\r\n" +          		"<h1>File Not Found</h1>";        		output.write(errorMessage.getBytes());      		}    	}    	catch (Exception e) {      		// thrown if cannot instantiate a File object      		System.out.println(e.toString() );    	}    	finally {      		if (fis!=null)        	fis.close();    	}  	}}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -