Blame view

src/com/fh/util/PathUtil.java 2.53 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
  package com.fh.util;
  
  import java.io.File;
  
  import javax.servlet.http.HttpServletRequest;
  
  import org.springframework.web.context.request.RequestContextHolder;
  import org.springframework.web.context.request.ServletRequestAttributes;
  
  /** 
   * 说明:路径工具类
   * 创建人:FH Q313596790
   * 修改时间:2014920
   * @version
   */
  public class PathUtil {
  
  	/**
  	 * 图片访问路径
  	 * @param pathType
  	 *            图片类型 visit-访问;save-保存
  	 * @param pathCategory
  	 *            图片类别,如:话题图片-topic、话题回复图片-reply、商家图片
  	 * @return
  	 */
  	public static String getPicturePath(String pathType, String pathCategory) {
  		String strResult = "";
  		HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder
  				.getRequestAttributes()).getRequest();
  		StringBuffer strBuf = new StringBuffer();
  		if ("visit".equals(pathType)) {
  		} else if ("save".equals(pathType)) {
  			String projectPath = PublicUtil.getPorjectPath().replaceAll("\\\\",
  					"/");
  			projectPath = splitString(projectPath, "bin/");
  			strBuf.append(projectPath);
  			strBuf.append("webapps/ROOT/");
  		}
  		strResult = strBuf.toString();
  		return strResult;
  	}
  
  	private static String splitString(String str, String param) {
  		String result = str;
  
  		if (str.contains(param)) {
  			int start = str.indexOf(param);
  			result = str.substring(0, start);
  		}
  
  		return result;
  	}
  	
  	/**获取classpath1
  	 * @return
  	 */
  	public static String getClasspath(){
  		String path = (String.valueOf(Thread.currentThread().getContextClassLoader().getResource(""))+"../../").replaceAll("file:/", "").replaceAll("%20", " ").trim();	
  		if(path.indexOf(":") != 1){
  			path = File.separator + path;
  		}
  		return path;
  	}
  	
  	/**获取classpath2
  	 * @return
  	 */
  	public static String getClassResources(){
  		String path =  (String.valueOf(Thread.currentThread().getContextClassLoader().getResource(""))).replaceAll("file:/", "").replaceAll("%20", " ").trim();	
  		if(path.indexOf(":") != 1){
  			path = File.separator + path;
  		}
  		return path;
  	}
  	
  	public static String PathAddress() {
  		String strResult = "";
  		HttpServletRequest request = ((ServletRequestAttributes) RequestContextHolder
  				.getRequestAttributes()).getRequest();
  
  		StringBuffer strBuf = new StringBuffer();
  		strBuf.append(request.getScheme() + "://");
  		strBuf.append(request.getServerName() + ":");
  		strBuf.append(request.getServerPort() + "");
  		strBuf.append(request.getContextPath() + "/");
  		strResult = strBuf.toString();// +"ss/";//加入项目的名称
  		return strResult;
  	}
  	
  }