通过使用PrintStream
和println
函数的实例,我可以将原始字符串发送到客户端。但是,我想将整个.html
文件发送到客户端以查看网页。出于这个原因,我的方法应该是什么?我试图读取一个文件并给出println函数中读取的内容。但是,尝试失败了。
答案 0 :(得分:1)
这样的Maby会有所帮助:
// sendfile
File myFile = new File ("source.html");
byte [] mybytearray = new byte [(int)myFile.length()];
FileInputStream fis = new FileInputStream(myFile);
BufferedInputStream bis = new BufferedInputStream(fis);
bis.read(mybytearray,0,mybytearray.length);
OutputStream os = sock.getOutputStream();
System.out.println("Sending...");
os.write(mybytearray,0,mybytearray.length);
os.flush();
sock.close();