📄 common.java
字号:
package com.hao2008.util;
public class Common {
// 定义上传文件的类型和最大上传大小,文件存放的路径
public static String fileType = "image/pjpeg";
public static int fileMaxSize = 1024 * 1024; // 单位:Byte(字节)
public static String filePath = "D:/server/Tomcat 5.0.30/webapps/hao2008/picture"; // 最后不带"/"
// 定义生成首页的源文件和生成的存放路径
public static String indexfromUrl = "http://localhost:8080/hao2008/index.jsp";
public static String indexToUrl = "D:/server/Tomcat 5.0.30/webapps/hao2008/";
// 定义生成列表页的源文件和生成的存放路径
public static String listFromUrl = "http://localhost:8080/hao2008/";
public static String listToUrl = "D:/server/Tomcat 5.0.30/webapps/hao2008/html/";
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -