From b6dd47b05107fc36d8ff4f7f29a4446521f95503 Mon Sep 17 00:00:00 2001 From: liusheng <337615773@qq.com> Date: 星期四, 02 一月 2025 18:44:28 +0800 Subject: [PATCH] 代码提交 --- ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java | 75 +++++++++++++++++++++++++++++++++++-- 1 files changed, 70 insertions(+), 5 deletions(-) diff --git a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java index 734e716..d361a51 100644 --- a/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java +++ b/ruoyi-admin/src/main/java/com/ruoyi/web/controller/common/CommonController.java @@ -15,13 +15,18 @@ import org.springframework.beans.factory.annotation.Autowired; import org.springframework.beans.factory.annotation.Value; import org.springframework.http.MediaType; +import org.springframework.mock.web.MockMultipartFile; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RestController; import org.springframework.web.multipart.MultipartFile; +import javax.management.*; import javax.servlet.http.HttpServletRequest; import javax.servlet.http.HttpServletResponse; +import java.io.File; +import java.lang.management.ManagementFactory; +import java.util.Set; /** * 閫氱敤璇锋眰澶勭悊 @@ -68,17 +73,37 @@ */ @PostMapping("/common/upload") public AjaxResult uploadFile(MultipartFile file) throws Exception { - //杩欎釜鐪佷汉姘戞槸8099锛屾墍浠ョ洿鎺ュ啓姝� - int tomcatPort = 8099; + try { // 涓婁紶鏂囦欢璺緞 String filePath = RuoYiConfig.getUploadPath(); + + //鍒ゆ柇鏂囦欢鏄惁瀛樺湪 + String filename = file.getOriginalFilename().trim(); + String felinamePath = FileUploadUtils.extractFilename(file); +// String pathFileName = FileUploadUtils.getPathFileName(filePath, s); + File file1 = new File(filePath + "/" + felinamePath); + boolean exists = file1.exists(); + if (exists) { + int i = filename.lastIndexOf("."); + String startStr = filename.substring(0, i); + String endStr = filename.substring(i, filename.length()); + + String newFilename = startStr + System.currentTimeMillis() + endStr; // your new filename + String contentType = file.getContentType(); + byte[] bytes = file.getBytes(); + file = new MockMultipartFile(newFilename, newFilename, contentType, bytes); + } + // 涓婁紶骞惰繑鍥炴柊鏂囦欢鍚嶇О String fileName = FileUploadUtils.upload(filePath, file); String url1 = serverConfig.getUrl(); log.info("url1鐨勫�紀ld :{}", url1); - //杩欓噷鐨�8032涓嶆槸tomcat鐨勶紝鎵�浠ヨ杞垚tomcat鐨� - url1.replaceAll("8032", "8099"); + if (url1.contains("8032")) { + //杩欓噷鐨�8032涓嶆槸tomcat鐨勶紝鎵�浠ヨ杞垚tomcat鐨� + url1 = url1.replace("8032", "8032/prod-api"); + } + log.info("url1鐨勫�糿ew :{}", url1); String url = url1 + fileName; AjaxResult ajax = AjaxResult.success(); ajax.put("fileName", fileName); @@ -89,6 +114,27 @@ } } + +// private static void parseUTF(int[] bits) { +// int index = 0;//杩欎釜鎸囬拡鎸囧悜姣忎竴琛屽惊鐜椂鍒椾笅鏍囩殑浣嶇疆锛屼笅涓�琛屽紑濮嬫椂閲嶆柊缃綅0 +// int count = 0; +// ;//杩欎釜鍙橀噺璁板綍姣忎釜UTF-8瀛楃鐨勫瓧鑺傛暟锛岃嚦灏�1瀛楄妭 +// for (int j = ; j < bits.length; ) { +// //寰幆姣忎竴琛屾暟缁勬暟鎹�-浠庡ご鍘昏--鍏堣杩欎釜瀛楃鏄嚑涓瓧鑺傜粍鎴愮殑 +// // 鐒跺悗鎸塽tf-8鐨勭紪鐮佹牸寮忕粍鍚堝瓧绗︿覆锛岃浆鎹负瀛楃鍗冲彲 +// if (bits[j] == 1) { +// count++; +// index++; +// } else { +// index++;//杩欎竴浣嶆槸1鍚庨潰璺熺殑閭d竴涓猳 +// //涓嶄负1锛屽垯璇存槑宸茬粡瑙f瀽瀹屽瓧鑺傛暟锛宑ount閲岄潰瀛樼殑濡傛灉鏄疈琛ㄧず鏄崟瀛楄妭鏁版嵁 +// //濡傛灉涓嶆槸o鍒欒〃绀烘槸澶氬瓧鑺傛暟鎹� +// String str = ""; +// } +// } +// } +// +//} /** * 鏈湴璧勬簮閫氱敤涓嬭浇 @@ -112,4 +158,23 @@ log.error("涓嬭浇鏂囦欢澶辫触", e); } } -} + + + public int getTomcatPort() { + MBeanServer beanServer = ManagementFactory.getPlatformMBeanServer(); + try { + QueryExp protocol = Query.match(Query.attr("protocol"), Query.value("HTTP/1.1")); + ObjectName name = new ObjectName("*:type=Connector,*"); + Set<ObjectName> objectNames = beanServer.queryNames(name, protocol); + for (ObjectName objectName : objectNames) { + String catalina = objectName.getDomain(); + if ("Catalina".equals(catalina)) { + return Integer.parseInt(objectName.getKeyProperty("port")); + } + } + } catch (MalformedObjectNameException e) { + e.printStackTrace(); + } + return 0; + } +} \ No newline at end of file -- Gitblit v1.9.3