123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501 |
- package com.keystar.plane.inspection.utils;
- import cn.hutool.core.io.resource.ClassPathResource;
- import cn.hutool.core.io.resource.Resource;
- import com.alibaba.druid.util.StringUtils;
- import com.alibaba.fastjson.JSONArray;
- import com.alibaba.fastjson.JSONObject;
- import com.keystar.plane.inspection.bo.Location;
- import com.keystar.plane.inspection.bo.NewFileBo;
- import com.keystar.plane.inspection.constant.LocationConstant;
- import lombok.extern.slf4j.Slf4j;
- import javax.servlet.ServletOutputStream;
- import javax.servlet.http.HttpServletResponse;
- import java.io.*;
- import java.net.URLEncoder;
- import java.nio.charset.StandardCharsets;
- import java.util.*;
- @Slf4j
- public class FileUtil {
- public static Map<String, Map<String, List<Location>>> readCurrent(String mFilePath) {
- Map<String, Map<String, List<Location>>> mReMap = new HashMap<>();
- FileInputStream fileInputStream = null;
- BufferedInputStream bufferedInputStream = null;
- JSONObject mFeatureJSONObject = null;
- try {
- StringBuffer mStringBuffer = new StringBuffer();
- // fileInputStream = new FileInputStream(new File(mFilePath));
- // bufferedInputStream = new BufferedInputStream(fileInputStream);
- Resource resource = new ClassPathResource(mFilePath);
- bufferedInputStream = new BufferedInputStream(resource.getStream());
- byte[] bytes = new byte[1024];
- int mReadLength = -1;
- while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
- if (mReadLength == 1024) {
- mStringBuffer.append(new String(bytes));
- }else {
- byte[] mBytes = new byte[mReadLength];
- System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
- mStringBuffer.append(new String(mBytes));
- }
- }
- String mJSONStr = mStringBuffer.toString();
- JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
- .replace("\r", "").replace("\\s", ""));
- JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
- for (int index = 0; index < mFeatureJSONArray.size(); index++) {
- mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
- JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
- String mCurrentName = mPropertieJSONObject.getString("name");
- JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
- JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
- JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
- List<Location> mLocationList = new ArrayList<>();
- for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size()-1; mIndex++) {
- JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
- Location mLocation = new Location();
- mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
- mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
- mLocationList.add(mLocation);
- }
- String[] mCurrentNameArray = mCurrentName.split("\\|");
- String mFZKey = mCurrentNameArray[0].split("HL")[0];
- if (!mReMap.containsKey(mFZKey)) {
- mReMap.put(mFZKey, new HashMap<>());
- }
- mReMap.get(mFZKey).put(mCurrentName, mLocationList);
- }
- }catch (Exception e) {
- }finally {
- if (bufferedInputStream != null) {
- try {
- bufferedInputStream.close();
- }catch (Exception e) {
- }
- }
- if (fileInputStream != null) {
- try {
- fileInputStream.close();
- }catch (Exception e) {
- }
- }
- }
- return mReMap;
- }
- public static Map<String, List<Location>> readFZLatLng(String mFilePath) {
- Map<String, List<Location>> mReMap = new HashMap<>();
- FileInputStream fileInputStream = null;
- BufferedInputStream bufferedInputStream = null;
- JSONObject mFeatureJSONObject = null;
- try {
- StringBuffer mStringBuffer = new StringBuffer();
- // fileInputStream = new FileInputStream(new File(mFilePath));
- // bufferedInputStream = new BufferedInputStream(fileInputStream);
- Resource resource = new ClassPathResource(mFilePath);
- bufferedInputStream = new BufferedInputStream(resource.getStream());
- byte[] bytes = new byte[1024];
- int mReadLength = -1;
- while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
- if (mReadLength == 1024) {
- mStringBuffer.append(new String(bytes));
- }else {
- byte[] mBytes = new byte[mReadLength];
- System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
- mStringBuffer.append(new String(mBytes));
- }
- }
- String mJSONStr = mStringBuffer.toString();
- JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
- .replace("\r", "").replace("\\s", ""));
- JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
- for (int index = 0; index < mFeatureJSONArray.size(); index++) {
- mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
- JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
- String mCurrentName = mPropertieJSONObject.getString("Name");
- JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
- JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
- JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
- List<Location> mLocationList = new ArrayList<>();
- for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size() - 1; mIndex++) {
- JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
- Location mLocation = new Location();
- mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
- mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
- mLocationList.add(mLocation);
- }
- mReMap.put(mCurrentName, mLocationList);
- }
- }catch (Exception e) {
- }finally {
- if (bufferedInputStream != null) {
- try {
- bufferedInputStream.close();
- }catch (Exception e) {
- }
- }
- if (fileInputStream != null) {
- try {
- fileInputStream.close();
- }catch (Exception e) {
- }
- }
- }
- return mReMap;
- }
- /**
- * 获取每个光伏板四角的经纬度坐标,存入Map中
- **/
- public static Map<String, Map<String, List<Location>>> ReadFileByIO(String mFilePath) {
- Map<String, Map<String, List<Location>>> mReMap = new HashMap<>();
- FileInputStream fileInputStream = null;
- BufferedInputStream bufferedInputStream = null;
- JSONObject mFeatureJSONObject = null;
- try {
- StringBuffer mStringBuffer = new StringBuffer();
- fileInputStream = new FileInputStream(new File(mFilePath));
- bufferedInputStream = new BufferedInputStream(fileInputStream);
- byte[] bytes = new byte[1024];
- int mReadLength = -1;
- while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
- if (mReadLength == 1024) {
- mStringBuffer.append(new String(bytes));
- }else {
- byte[] mBytes = new byte[mReadLength];
- System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
- mStringBuffer.append(new String(mBytes));
- }
- }
- String mJSONStr = mStringBuffer.toString();
- JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
- .replace("\r", "").replace("\\s", ""));
- JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
- for (int index = 0; index < mFeatureJSONArray.size(); index++) {
- mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
- JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
- String mCurrentName = mPropertieJSONObject.getString("Name");
- JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
- JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
- JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
- List<Location> mLocationList = new ArrayList<>();
- for (int mIndex = 0; mIndex < 4; mIndex++) {
- JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
- Location mLocation = new Location();
- mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(1));
- mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(0));
- mLocationList.add(mLocation);
- }
- String[] mCurrentNameArray = mCurrentName.split("\\|");
- String mFZKey = mCurrentNameArray[0].split("HL")[0];
- if (!mReMap.containsKey(mFZKey)) {
- mReMap.put(mFZKey, new HashMap<>());
- }
- mReMap.get(mFZKey).put(mCurrentName, mLocationList);
- }
- }catch (Exception e) {
- }finally {
- if (bufferedInputStream != null) {
- try {
- bufferedInputStream.close();
- }catch (Exception e) {
- }
- }
- if (fileInputStream != null) {
- try {
- fileInputStream.close();
- }catch (Exception e) {
- }
- }
- }
- return mReMap;
- }
- /**
- * 获取每个光伏区多边形的经纬度坐标,存入Map中
- **/
- public static Map<String, List<Location>> ReadFZFileByIO(String mFilePath) {
- Map<String, List<Location>> mReMap = new HashMap<>();
- FileInputStream fileInputStream = null;
- BufferedInputStream bufferedInputStream = null;
- JSONObject mFeatureJSONObject = null;
- try {
- StringBuffer mStringBuffer = new StringBuffer();
- fileInputStream = new FileInputStream(new File(mFilePath));
- bufferedInputStream = new BufferedInputStream(fileInputStream);
- byte[] bytes = new byte[1024];
- int mReadLength = -1;
- while ((mReadLength = bufferedInputStream.read(bytes, 0, 1024)) != -1) {
- if (mReadLength == 1024) {
- mStringBuffer.append(new String(bytes));
- }else {
- byte[] mBytes = new byte[mReadLength];
- System.arraycopy(bytes, 0, mBytes, 0, mReadLength);
- mStringBuffer.append(new String(mBytes));
- }
- }
- String mJSONStr = mStringBuffer.toString();
- JSONObject mJSONObject = JSONObject.parseObject(mJSONStr.replace("\t","").replace("\n", "")
- .replace("\r", "").replace("\\s", ""));
- JSONArray mFeatureJSONArray = mJSONObject.getJSONArray("features");
- for (int index = 0; index < mFeatureJSONArray.size(); index++) {
- mFeatureJSONObject = mFeatureJSONArray.getJSONObject(index);
- JSONObject mPropertieJSONObject = mFeatureJSONObject.getJSONObject("properties");
- String mCurrentName = mPropertieJSONObject.getString("Name");
- JSONObject mGeometryJSONObject = mFeatureJSONObject.getJSONObject("geometry");
- JSONArray mCoordinateJSONArray = mGeometryJSONObject.getJSONArray("coordinates");
- JSONArray mCoordinateLLJSONArray = mCoordinateJSONArray.getJSONArray(0);
- List<Location> mLocationList = new ArrayList<>();
- for (int mIndex = 0; mIndex < mCoordinateLLJSONArray.size(); mIndex++) {
- JSONArray mCoordinateLLValueJSONArray = mCoordinateLLJSONArray.getJSONArray(mIndex);
- Location mLocation = new Location();
- mLocation.setLon(mCoordinateLLValueJSONArray.getDouble(0));
- mLocation.setLat(mCoordinateLLValueJSONArray.getDouble(1));
- mLocationList.add(mLocation);
- }
- String mFZKey = mCurrentName.split("FZ")[1];
- mReMap.put(mFZKey, mLocationList);
- }
- }catch (Exception e) {
- }finally {
- if (bufferedInputStream != null) {
- try {
- bufferedInputStream.close();
- }catch (Exception e) {
- }
- }
- if (fileInputStream != null) {
- try {
- fileInputStream.close();
- }catch (Exception e) {
- }
- }
- }
- return mReMap;
- }
- /**
- * 获取最新任务的红外图片地址
- **/
- public static List<String> getNewPhoto(String photoPath){
- // 获取最新修改的航线
- // File path = new File("/data/autoUpload/photo/");
- // File path = new File("C:\\Users\\KR0282\\Desktop\\photo");
- File path = new File(photoPath);
- File[] files = path.listFiles();
- File[] sort = fileSort(files);
- String missionName = sort[0].getName();
- log.info("最新修改的航线是:" + missionName);
- // 获取最新的架次
- // File record = new File("/data/autoUpload/photo/" + missionName);
- File record = new File(path.getPath() +"\\"+ missionName);
- File[] records = record.listFiles();
- File[] sort1 = fileSort(records);
- String recordName = sort1[0].getName();
- log.info("最新的架次是:" + recordName);
- // 获取最新架次里面的红外图片
- File photoFile = new File(record.getPath() + "\\" + recordName);
- File[] photos = photoFile.listFiles();
- List<String> photoList = new ArrayList<>();
- if (photos != null){
- for (File file : photos){
- String name = file.getName();
- if (name.contains("THRM.jpg") || name.contains("T.jpg")){
- photoList.add("/nest/autoUpload/photo"+ "/" + missionName + "/" + recordName + "/" + name);
- }
- }
- }
- return photoList;
- }
- /**
- * 将文件按时间排序,最新的在前
- **/
- public static File[] fileSort(File[] files){
- Arrays.sort(files, new Comparator<File>() {
- @Override
- public int compare(File file1, File file2) {
- return (int)(file2.lastModified()-file1.lastModified());
- }
- });
- return files;
- }
- /**
- * 查询minio中最新目录
- **/
- public static NewFileBo getNewFilePath(){
- // 获取最新修改的航线
- File path = new File("/data/photo/");
- // File path = new File("C:\\Users\\KR0282\\Desktop\\photo");
- // File path = new File(photoPath);
- File[] files = path.listFiles();
- File[] sort = fileSort(files);
- String missionName = sort[0].getName();
- log.info("最新修改的航线是:" + missionName);
- // 获取最新的架次
- // File record = new File("/data/autoUpload/photo/" + missionName);
- File record = new File(path.getPath() +"/"+ missionName);
- File[] records = record.listFiles();
- String recordName ;
- // 文件大于一个才进行排序
- if (records.length > 1){
- File[] sort1 = fileSort(records);
- recordName = sort1[0].getName();
- }else {
- recordName = records[0].getName();
- }
- log.info("最新的架次是:" + recordName);
- NewFileBo newFileBo = new NewFileBo();
- newFileBo.setMissionId(Integer.valueOf(missionName));
- newFileBo.setRecordId(Integer.valueOf(recordName));
- newFileBo.setPath("/data/photo/"+ missionName + "/" + recordName);
- // newFileBo.setPath("C:\\Users\\KR0282\\Desktop\\photo\\"+ missionName + "\\" + recordName);
- return newFileBo;
- }
- // /**
- // * 读取读取resources目录下的文件
- // **/
- // public static String getContent(String filePath){
- // String res = "";
- // if(StringUtils.isEmpty(filePath)){
- // log.info("文件路径不能为空");
- // return res;
- // }
- // try {
- // Resource resource = new ClassPathResource(filePath);
- // BufferedReader br = new BufferedReader(new InputStreamReader(resource.getStream(), StandardCharsets.UTF_8));
- // StringBuilder sb = new StringBuilder();
- // String str = "";
- // while((str=br.readLine())!=null) {
- // sb.append(str);
- // }
- // res = sb.toString();
- // } catch (Exception e) {
- // log.info("读取文件{}时发生异常",filePath);
- // e.printStackTrace();
- // }
- // return res;
- //
- // }
- // String Content = FileUtil.getContent("pv.json");
-
- /**
- * 根据航线名字查询最新的架次
- **/
- public static String getRecordIdByMissionId(Integer missionName){
- File record = new File("/data/photo/"+ missionName);
- File[] records = record.listFiles();
- String recordName ;
- // 文件大于一个才进行排序
- if (records.length > 1){
- File[] sort1 = fileSort(records);
- recordName = sort1[0].getName();
- }else {
- recordName = records[0].getName();
- }
- return recordName;
- }
- /**
- * 下载文件
- **/
- public static void download(HttpServletResponse response, String filePath) throws UnsupportedEncodingException {
- String filename = URLEncoder.encode("无人机巡检报告.doc", "UTF-8");
- response.setContentType("application/x-download");
- response.setHeader("Content-Disposition", "attachment;filename=" + filename);//浏览器上提示下载时默认的文件名
- try (ServletOutputStream out = response.getOutputStream();
- InputStream stream = new FileInputStream(filePath)){//读取服务器上的文件
- byte buff[] = new byte[1024];
- int length = 0;
- while ((length = stream.read(buff)) > 0) {
- out.write(buff,0,length);
- }
- stream.close();
- out.close();
- out.flush();
- } catch (IOException e) {
- e.printStackTrace();
- }
- }
- /**
- * 从输入流中获取数据
- *
- * @param inStream
- * 输入流
- * @return
- * @throws Exception
- */
- public static byte[] readInputStream(InputStream inStream) throws IOException {
- if(inStream == null){
- return new byte[]{};
- }
- ByteArrayOutputStream outStream = new ByteArrayOutputStream();
- byte[] buffer = new byte[10240];
- int len = 0;
- while ((len = inStream.read(buffer)) != -1) {
- outStream.write(buffer, 0, len);
- }
- inStream.close();
- return outStream.toByteArray();
- }
- }
|