最近有个作业是要写一个上传档案的程式
是透过html 表单 然后后台接 存在local端资料夹
因为要写成client-server端 要两个专案这样
简单说client是html 透过表单送到server端来处理
但因为要用web service挂在tomcat上
server这边程式就不能用以下程式码方式
//@WebServlet("/uploadpage")
@MultipartConfig(fileSizeThreshold = 1024 * 1024 * 2, // 2MB
maxFileSize = 1024 * 1024 * 10, // 10MB
maxRequestSize = 1024 * 1024 * 50) // 50MB
public class uploadpage extends HttpServlet {
private static final String SAVE_DIR = "uploadFile";
protected void doPost(HttpServletRequest request, HttpServletResponse
response)
throws ServletException, IOException {.....}
是要用filestream的话 要怎么接表单??
那请问大概要怎么解的
新手问题多多包涵 谢谢