我正在Ubuntu中开发我的应用程序。我有一个Java Web Spring MVC应用程序。在那我有一个控制器。客户端可以上传文件(通过AngularJS发布)。在控制器中,我收到文件并复制到特定位置。
这是我的控制器
@RequestMapping(value = "/fileUpload", method = RequestMethod.POST)
@ResponseBody
public String UploadFile(HttpServletRequest request,HttpServletResponse response) {
SimpleDateFormat sdf = new SimpleDateFormat("MM_dd_yyyy_HHmmss");
String date = sdf.format(new Date());
String fileLoc = null;
MultipartHttpServletRequest mRequest = (MultipartHttpServletRequest) request;
Iterator<String> itr = mRequest.getFileNames();
while (itr.hasNext()) {
MultipartFile mFile = mRequest.getFile(itr.next());
String fileName = mFile.getOriginalFilename();
String homePath=System.getProperty("user.home");
String separator=File.separator;
fileLoc = homePath + separator + "myapp" + separator + "file-uploads" +
separator + date + "_" + fileName;
System.out.println(fileLoc);
try {
File file = new File(fileLoc);
// If the directory does not exist, create it
if (!file.getParentFile().exists()) {
file.getParentFile().mkdirs();
}
FileCopyUtils.copy(mFile.getBytes(), file);
}
catch (FileNotFoundException e) {
e.printStackTrace();
}
catch (IOException e) {
e.printStackTrace();
}
catch(Exception e) {
e.printStackTrace();
}
}
return fileLoc;
}
但是当我在tomcat服务器中部署它并运行时,该文件将在root中创建。
当我打印 fileLoc 的值时,会显示
/root/myapp/file-uploads/01_16_2014_000924_document.jpg
我在控制器中添加了 main 方法。
public static void main(String[] args) {
String homePath=System.getProperty("user.home");
String separator=File.separator;
System.out.println("Home Path: " + homePath);
System.out.println("Separator: " + separator);
}
当我将其作为Java Application运行时,我得到了正确的输出
Home Path : /home/shiju
Separator : /
为什么在Tomcat上运行时它会给root用户?
答案 0 :(得分:5)
如果您使用root用户执行应用程序,那么很明显/root/
属性中将返回user.home
。