FileUtil.java 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501
  1. package com.keystar.plane.inspection.utils;
  2. import cn.hutool.core.io.resource.ClassPathResource;
  3. import cn.hutool.core.io.resource.Resource;
  4. import com.alibaba.druid.util.StringUtils;
  5. import com.alibaba.fastjson.JSONArray;
  6. import com.alibaba.fastjson.JSONObject;
  7. import com.keystar.plane.inspection.bo.Location;
  8. import com.keystar.plane.inspection.bo.NewFileBo;
  9. import com.keystar.plane.inspection.constant.LocationConstant;
  10. import lombok.extern.slf4j.Slf4j;
  11. import javax.servlet.ServletOutputStream;
  12. import javax.servlet.http.HttpServletResponse;
  13. import java.io.*;
  14. import java.net.URLEncoder;
  15. import java.nio.charset.StandardCharsets;
  16. import java.util.*;
  17. @Slf4j
  18. public class FileUtil {
  19. public static Map<String, Map<String, List<Location>>> readCurrent(String mFilePath) {
  20. Map<String, Map<String, List<Location>>> mReMap = new HashMap<>();
  21. FileInputStream fileInputStream = null;
  22. BufferedInputStream bufferedInputStream = null;
  23. JSONObject mFeatureJSONObject = null;
  24. try {
  25. StringBuffer mStringBuffer = new StringBuffer();
  26. // fileInputStream = new FileInputStream(new File(mFilePath));
  27. // bufferedInputStream = new BufferedInputStream(fileInputStream);
  28. Resource resource = new ClassPathResource(mFilePath);
  29. bufferedInputStream = new BufferedInputStream(resource.getStream());
  30. byte[] bytes = new byte[1024];
  31. int mReadLength = -1;
  32. while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
  33. if (mReadLength == 1024) {
  34. mStringBuffer.append(new String(bytes));
  35. }else {
  36. byte[] mBytes = new byte[mReadLength];
  37. System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
  38. mStringBuffer.append(new String(mBytes));
  39. }
  40. }
  41. String mJSONStr = mStringBuffer.toString();
  42. JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
  43. .replace("\r", "").replace("\\s", ""));
  44. JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
  45. for (int index = 0; index < mFeatureJSONArray.size(); index++) {
  46. mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
  47. JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
  48. String mCurrentName = mPropertieJSONObject.getString("name");
  49. JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
  50. JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
  51. JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
  52. List<Location> mLocationList = new ArrayList<>();
  53. for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size()-1; mIndex++) {
  54. JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
  55. Location mLocation = new Location();
  56. mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
  57. mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
  58. mLocationList.add(mLocation);
  59. }
  60. String[] mCurrentNameArray = mCurrentName.split("\\|");
  61. String mFZKey = mCurrentNameArray[0].split("HL")[0];
  62. if (!mReMap.containsKey(mFZKey)) {
  63. mReMap.put(mFZKey, new HashMap<>());
  64. }
  65. mReMap.get(mFZKey).put(mCurrentName, mLocationList);
  66. }
  67. }catch (Exception e) {
  68. }finally {
  69. if (bufferedInputStream != null) {
  70. try {
  71. bufferedInputStream.close();
  72. }catch (Exception e) {
  73. }
  74. }
  75. if (fileInputStream != null) {
  76. try {
  77. fileInputStream.close();
  78. }catch (Exception e) {
  79. }
  80. }
  81. }
  82. return mReMap;
  83. }
  84. public static Map<String, List<Location>> readFZLatLng(String mFilePath) {
  85. Map<String, List<Location>> mReMap = new HashMap<>();
  86. FileInputStream fileInputStream = null;
  87. BufferedInputStream bufferedInputStream = null;
  88. JSONObject mFeatureJSONObject = null;
  89. try {
  90. StringBuffer mStringBuffer = new StringBuffer();
  91. // fileInputStream = new FileInputStream(new File(mFilePath));
  92. // bufferedInputStream = new BufferedInputStream(fileInputStream);
  93. Resource resource = new ClassPathResource(mFilePath);
  94. bufferedInputStream = new BufferedInputStream(resource.getStream());
  95. byte[] bytes = new byte[1024];
  96. int mReadLength = -1;
  97. while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
  98. if (mReadLength == 1024) {
  99. mStringBuffer.append(new String(bytes));
  100. }else {
  101. byte[] mBytes = new byte[mReadLength];
  102. System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
  103. mStringBuffer.append(new String(mBytes));
  104. }
  105. }
  106. String mJSONStr = mStringBuffer.toString();
  107. JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
  108. .replace("\r", "").replace("\\s", ""));
  109. JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
  110. for (int index = 0; index < mFeatureJSONArray.size(); index++) {
  111. mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
  112. JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
  113. String mCurrentName = mPropertieJSONObject.getString("Name");
  114. JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
  115. JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
  116. JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
  117. List<Location> mLocationList = new ArrayList<>();
  118. for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size() - 1; mIndex++) {
  119. JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
  120. Location mLocation = new Location();
  121. mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
  122. mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
  123. mLocationList.add(mLocation);
  124. }
  125. mReMap.put(mCurrentName, mLocationList);
  126. }
  127. }catch (Exception e) {
  128. }finally {
  129. if (bufferedInputStream != null) {
  130. try {
  131. bufferedInputStream.close();
  132. }catch (Exception e) {
  133. }
  134. }
  135. if (fileInputStream != null) {
  136. try {
  137. fileInputStream.close();
  138. }catch (Exception e) {
  139. }
  140. }
  141. }
  142. return mReMap;
  143. }
  144. /**
  145. * 获取每个光伏板四角的经纬度坐标,存入Map中
  146. **/
  147. public static Map<String, Map<String, List<Location>>> ReadFileByIO(String mFilePath) {
  148. Map<String, Map<String, List<Location>>> mReMap = new HashMap<>();
  149. FileInputStream fileInputStream = null;
  150. BufferedInputStream bufferedInputStream = null;
  151. JSONObject mFeatureJSONObject = null;
  152. try {
  153. StringBuffer mStringBuffer = new StringBuffer();
  154. fileInputStream = new FileInputStream(new File(mFilePath));
  155. bufferedInputStream = new BufferedInputStream(fileInputStream);
  156. byte[] bytes = new byte[1024];
  157. int mReadLength = -1;
  158. while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
  159. if (mReadLength == 1024) {
  160. mStringBuffer.append(new String(bytes));
  161. }else {
  162. byte[] mBytes = new byte[mReadLength];
  163. System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
  164. mStringBuffer.append(new String(mBytes));
  165. }
  166. }
  167. String mJSONStr = mStringBuffer.toString();
  168. JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
  169. .replace("\r", "").replace("\\s", ""));
  170. JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
  171. for (int index = 0; index < mFeatureJSONArray.size(); index++) {
  172. mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
  173. JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
  174. String mCurrentName = mPropertieJSONObject.getString("Name");
  175. JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
  176. JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
  177. JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
  178. List<Location> mLocationList = new ArrayList<>();
  179. for (int mIndex = 0; mIndex < 4; mIndex++) {
  180. JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
  181. Location mLocation = new Location();
  182. mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(1));
  183. mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(0));
  184. mLocationList.add(mLocation);
  185. }
  186. String[] mCurrentNameArray = mCurrentName.split("\\|");
  187. String mFZKey = mCurrentNameArray[0].split("HL")[0];
  188. if (!mReMap.containsKey(mFZKey)) {
  189. mReMap.put(mFZKey, new HashMap<>());
  190. }
  191. mReMap.get(mFZKey).put(mCurrentName, mLocationList);
  192. }
  193. }catch (Exception e) {
  194. }finally {
  195. if (bufferedInputStream != null) {
  196. try {
  197. bufferedInputStream.close();
  198. }catch (Exception e) {
  199. }
  200. }
  201. if (fileInputStream != null) {
  202. try {
  203. fileInputStream.close();
  204. }catch (Exception e) {
  205. }
  206. }
  207. }
  208. return mReMap;
  209. }
  210. /**
  211. * 获取每个光伏区多边形的经纬度坐标,存入Map中
  212. **/
  213. public static Map<String, List<Location>> ReadFZFileByIO(String mFilePath) {
  214. Map<String, List<Location>> mReMap = new HashMap<>();
  215. FileInputStream fileInputStream = null;
  216. BufferedInputStream bufferedInputStream = null;
  217. JSONObject mFeatureJSONObject = null;
  218. try {
  219. StringBuffer mStringBuffer = new StringBuffer();
  220. fileInputStream = new FileInputStream(new File(mFilePath));
  221. bufferedInputStream = new BufferedInputStream(fileInputStream);
  222. byte[] bytes = new byte[1024];
  223. int mReadLength = -1;
  224. while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
  225. if (mReadLength == 1024) {
  226. mStringBuffer.append(new String(bytes));
  227. }else {
  228. byte[] mBytes = new byte[mReadLength];
  229. System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
  230. mStringBuffer.append(new String(mBytes));
  231. }
  232. }
  233. String mJSONStr = mStringBuffer.toString();
  234. JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
  235. .replace("\r", "").replace("\\s", ""));
  236. JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
  237. for (int index = 0; index < mFeatureJSONArray.size(); index++) {
  238. mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
  239. JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
  240. String mCurrentName = mPropertieJSONObject.getString("Name");
  241. JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
  242. JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
  243. JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
  244. List<Location> mLocationList = new ArrayList<>();
  245. for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size(); mIndex++) {
  246. JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
  247. Location mLocation = new Location();
  248. mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
  249. mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
  250. mLocationList.add(mLocation);
  251. }
  252. String mFZKey = mCurrentName.split("FZ")[1];
  253. mReMap.put(mFZKey, mLocationList);
  254. }
  255. }catch (Exception e) {
  256. }finally {
  257. if (bufferedInputStream != null) {
  258. try {
  259. bufferedInputStream.close();
  260. }catch (Exception e) {
  261. }
  262. }
  263. if (fileInputStream != null) {
  264. try {
  265. fileInputStream.close();
  266. }catch (Exception e) {
  267. }
  268. }
  269. }
  270. return mReMap;
  271. }
  272. /**
  273. * 获取最新任务的红外图片地址
  274. **/
  275. public static List<String> getNewPhoto(String photoPath){
  276. // 获取最新修改的航线
  277. // File path = new File("/data/autoUpload/photo/");
  278. // File path = new File("C:\\Users\\KR0282\\Desktop\\photo");
  279. File path = new File(photoPath);
  280. File[] files = path.listFiles();
  281. File[] sort = fileSort(files);
  282. String missionName = sort[0].getName();
  283. log.info("最新修改的航线是:" + missionName);
  284. // 获取最新的架次
  285. // File record = new File("/data/autoUpload/photo/" + missionName);
  286. File record = new File(path.getPath() +"\\"+ missionName);
  287. File[] records = record.listFiles();
  288. File[] sort1 = fileSort(records);
  289. String recordName = sort1[0].getName();
  290. log.info("最新的架次是:" + recordName);
  291. // 获取最新架次里面的红外图片
  292. File photoFile = new File(record.getPath() + "\\" + recordName);
  293. File[] photos = photoFile.listFiles();
  294. List<String> photoList = new ArrayList<>();
  295. if (photos != null){
  296. for (File file : photos){
  297. String name = file.getName();
  298. if (name.contains("THRM.jpg") || name.contains("T.jpg")){
  299. photoList.add("/nest/autoUpload/photo"+ "/" + missionName + "/" + recordName + "/" + name);
  300. }
  301. }
  302. }
  303. return photoList;
  304. }
  305. /**
  306. * 将文件按时间排序,最新的在前
  307. **/
  308. public static File[] fileSort(File[] files){
  309. Arrays.sort(files, new Comparator<File>() {
  310. @Override
  311. public int compare(File file1, File file2) {
  312. return (int)(file2.lastModified()-file1.lastModified());
  313. }
  314. });
  315. return files;
  316. }
  317. /**
  318. * 查询minio中最新目录
  319. **/
  320. public static NewFileBo getNewFilePath(){
  321. // 获取最新修改的航线
  322. File path = new File("/data/photo/");
  323. // File path = new File("C:\\Users\\KR0282\\Desktop\\photo");
  324. // File path = new File(photoPath);
  325. File[] files = path.listFiles();
  326. File[] sort = fileSort(files);
  327. String missionName = sort[0].getName();
  328. log.info("最新修改的航线是:" + missionName);
  329. // 获取最新的架次
  330. // File record = new File("/data/autoUpload/photo/" + missionName);
  331. File record = new File(path.getPath() +"/"+ missionName);
  332. File[] records = record.listFiles();
  333. String recordName ;
  334. // 文件大于一个才进行排序
  335. if (records.length > 1){
  336. File[] sort1 = fileSort(records);
  337. recordName = sort1[0].getName();
  338. }else {
  339. recordName = records[0].getName();
  340. }
  341. log.info("最新的架次是:" + recordName);
  342. NewFileBo newFileBo = new NewFileBo();
  343. newFileBo.setMissionId(Integer.valueOf(missionName));
  344. newFileBo.setRecordId(Integer.valueOf(recordName));
  345. newFileBo.setPath("/data/photo/"+ missionName + "/" + recordName);
  346. // newFileBo.setPath("C:\\Users\\KR0282\\Desktop\\photo\\"+ missionName + "\\" + recordName);
  347. return newFileBo;
  348. }
  349. // /**
  350. // * 读取读取resources目录下的文件
  351. // **/
  352. // public static String getContent(String filePath){
  353. // String res = "";
  354. // if(StringUtils.isEmpty(filePath)){
  355. // log.info("文件路径不能为空");
  356. // return res;
  357. // }
  358. // try {
  359. // Resource resource = new ClassPathResource(filePath);
  360. // BufferedReader br = new BufferedReader(new InputStreamReader(resource.getStream(), StandardCharsets.UTF_8));
  361. // StringBuilder sb = new StringBuilder();
  362. // String str = "";
  363. // while((str=br.readLine())!=null) {
  364. // sb.append(str);
  365. // }
  366. // res = sb.toString();
  367. // } catch (Exception e) {
  368. // log.info("读取文件{}时发生异常",filePath);
  369. // e.printStackTrace();
  370. // }
  371. // return res;
  372. //
  373. // }
  374. // String Content = FileUtil.getContent("pv.json");
  375. /**
  376. * 根据航线名字查询最新的架次
  377. **/
  378. public static String getRecordIdByMissionId(Integer missionName){
  379. File record = new File("/data/photo/"+ missionName);
  380. File[] records = record.listFiles();
  381. String recordName ;
  382. // 文件大于一个才进行排序
  383. if (records.length > 1){
  384. File[] sort1 = fileSort(records);
  385. recordName = sort1[0].getName();
  386. }else {
  387. recordName = records[0].getName();
  388. }
  389. return recordName;
  390. }
  391. /**
  392. * 下载文件
  393. **/
  394. public static void download(HttpServletResponse response, String filePath) throws UnsupportedEncodingException {
  395. String filename = URLEncoder.encode("无人机巡检报告.doc", "UTF-8");
  396. response.setContentType("application/x-download");
  397. response.setHeader("Content-Disposition", "attachment;filename=" + filename);//浏览器上提示下载时默认的文件名
  398. try (ServletOutputStream out = response.getOutputStream();
  399. InputStream stream = new FileInputStream(filePath)){//读取服务器上的文件
  400. byte buff[] = new byte[1024];
  401. int length = 0;
  402. while ((length = stream.read(buff)) > 0) {
  403. out.write(buff,0,length);
  404. }
  405. stream.close();
  406. out.close();
  407. out.flush();
  408. } catch (IOException e) {
  409. e.printStackTrace();
  410. }
  411. }
  412. /**
  413. * 从输入流中获取数据
  414. *
  415. * @param inStream
  416. * 输入流
  417. * @return
  418. * @throws Exception
  419. */
  420. public static byte[] readInputStream(InputStream inStream) throws IOException {
  421. if(inStream == null){
  422. return new byte[]{};
  423. }
  424. ByteArrayOutputStream outStream = new ByteArrayOutputStream();
  425. byte[] buffer = new byte[10240];
  426. int len = 0;
  427. while ((len = inStream.read(buffer)) != -1) {
  428. outStream.write(buffer, 0, len);
  429. }
  430. inStream.close();
  431. return outStream.toByteArray();
  432. }
  433. }