标签:class 文件 js验证 迭代 map inf tco linux系统 测试
尝试和测试有时候其实是一码事.
进行小测试时的版本迭代 (不需要svn,git)
在windows系统和linux系统间有个路径的不同的区分.
比如下面这个属于windows获取路径:
String path = session.getServletContext().getRealPath("upload/"+filename);
而下面的是属于linux系统的路径: (根据不同的linux发行版可能配置不同)
String absolutePath = "/home/upload/"+filename;
同样,在上传文件时new的文件也就不同了
//windows路径↓ File destFile = new File(path); //linux路径↓ // File destFile = new File(absolutePath);
//windows路径↓ map.put("filepath",path); //linux路径↓ // map.put("filepath",absolutePath);
记以下,然后开始做几个js验证和方法重载了~
标签:class 文件 js验证 迭代 map inf tco linux系统 测试
原文地址:https://www.cnblogs.com/ukzq/p/9650729.html