Android打开并读取Word文件到html中采用PIO技术

  看到网上很多关于Android打开word文件的例子,最多的也只有poi,也记不清楚是在哪转载的了,反正是运行不了,经过长时间研究并对原帖作了一定修改后,能正常运行了,并能正确显示word里的文字图片表格。

 

首先 需要下载两个 poi-3.7-20101029.jar 和poi-scratchpad-3.7-20101029.jar 可以下载3.9的了

下载地址:http://poi.apache.org/download.html

1、ViewFile.java 文件

 

[java]  view plain copy
  1. public class ViewFile extends Activity {  
  2.   
  3.     private String nameStr = null;  
  4.     private Range range = null;  
  5.     private HWPFDocument hwpf = null;  
  6.     private String htmlPath;  
  7.     private String picturePath;  
  8.     private WebView view;  
  9.     private List pictures;  
  10.     private TableIterator tableIterator;  
  11.     private int presentPicture = 0;  
  12.     private int screenWidth;  
  13.     private FileOutputStream output;  
  14.     private File myFile;  
  15.   
  16.     @SuppressLint("SdCardPath")  
  17.     public void onCreate(Bundle savedInstanceState) {  
  18.         super.onCreate(savedInstanceState);  
  19.         setContentView(R.layout.view);  
  20.         view = (WebView) findViewById(R.id.show);  
  21.         screenWidth = this.getWindowManager().getDefaultDisplay().getWidth() - 10;  
  22.         Intent intent = this.getIntent();  
  23.         Bundle bundle = intent.getExtras();  
  24.         nameStr = bundle.getString("name");  
  25.         getRange();  
  26.         makeFile();  
  27.         readAndWrite();  
  28.   
  29.     view.loadUrl("file://" + htmlPath);  
  30.             
  31. //view.loadDataWithBaseURL("file://" + htmlPath, "", "text/html", "utf-8", "");  
  32. //  view.loadUrl("file://"+"/mnt/sdcard/"+"xiao/my.html");  
  33.     //  view.loadUrl("content://com.android.htmlfileprovider" + htmlPath);  
  34.         System.out.println("htmlPath" + htmlPath);  
  35.     }  
  36.   
  37.     public boolean onCreateOptionsMenu(Menu menu) {  
  38.   
  39.         super.onCreateOptionsMenu(menu);  
  40.         menu.add(000"关于文件").setIcon(  
  41.                 this.getResources().getDrawable(R.drawable.importdb));  
  42.         menu.add(011"关于作者").setIcon(  
  43.                 this.getResources().getDrawable(R.drawable.exportdb));  
  44.         return true;  
  45.     }  
  46.   
  47.     public boolean onOptionsItemSelected(MenuItem item) {  
  48.   
  49.         switch (item.getItemId()) {  
  50.         case 0:  
  51.             showDialog(0);  
  52.             break;  
  53.         case 1:  
  54.             showDialog(1);  
  55.             break;  
  56.         }  
  57.         return super.onOptionsItemSelected(item);  
  58.     }  
  59.   
  60.     protected Dialog onCreateDialog(int id) {  
  61.         switch (id) {  
  62.         case 0:  
  63.             return buildDialogProgram(ViewFile.this);  
  64.         case 1:  
  65.             return buildDialogAuthor(ViewFile.this);  
  66.         }  
  67.         return null;  
  68.     }  
  69.   
  70.     private Dialog buildDialogAuthor(Context context) {  
  71.   
  72.         AlertDialog.Builder builder = new AlertDialog.Builder(context);  
  73.         builder.setIcon(this.getResources().getDrawable(R.drawable.dslab));  
  74.         builder.setTitle(this.getResources().getString(R.string.aboutauthor));  
  75.         builder.setMessage(this.getResources().getString(R.string.author));  
  76.         builder.setPositiveButton(  
  77.                 this.getResources().getString(R.string.gotit),  
  78.                 new DialogInterface.OnClickListener() {  
  79.   
  80.                     public void onClick(DialogInterface dialog, int which) {  
  81.                         // TODO Auto-generated method stub  
  82.                         dialog.dismiss();  
  83.                     }  
  84.   
  85.                 });  
  86.         return builder.create();  
  87.   
  88.     }  
  89.   
  90.     private Dialog buildDialogProgram(Context context) {  
  91.   
  92.         AlertDialog.Builder builder = new AlertDialog.Builder(context);  
  93.         builder.setTitle(this.getResources().getString(R.string.aboutprogram));  
  94.         builder.setIcon(this.getResources().getDrawable(R.drawable.importdb));  
  95.         String programInfo = this.getResources().getString(R.string.word)  
  96.                 + hwpf.characterLength() + "\n";  
  97.         programInfo = programInfo  
  98.                 + this.getResources().getString(R.string.paragrap)  
  99.                 + range.numParagraphs() + "\n";  
  100.         programInfo = programInfo  
  101.                 + this.getResources().getString(R.string.pictures)  
  102.                 + pictures.size() + "\n";  
  103.   
  104.         builder.setMessage(programInfo);  
  105.         builder.setPositiveButton(  
  106.                 this.getResources().getString(R.string.gotit),  
  107.                 new DialogInterface.OnClickListener() {  
  108.   
  109.                     public void onClick(DialogInterface dialog, int which) {  
  110.                         // TODO Auto-generated method stub  
  111.                         dialog.dismiss();  
  112.                     }  
  113.                 });  
  114.   
  115.         return builder.create();  
  116.     }  
  117.   
  118.     public void makeFile() {  
  119.   
  120.         String sdStateString = android.os.Environment.getExternalStorageState();  
  121.   
  122.         if (sdStateString.equals(android.os.Environment.MEDIA_MOUNTED)) {  
  123.             try {  
  124.                 File sdFile = Environment.getExternalStorageDirectory();  
  125.   
  126.                 String path = sdFile + File.separator  
  127.                         + "xiao";  
  128.   
  129.                 String temp = path + File.separator + "my.html";  
  130.   
  131.                 String filePath=Environment.getExternalStorageDirectory()+"/xiao/my.html";  
  132.                 File dirFile = new File(path);  
  133.                 if (!dirFile.exists()) {  
  134.                     dirFile.mkdir();  
  135.                 }  
  136.                 File myFile = new File(path + File.separator + "my.html");  
  137.   
  138.                 if (!myFile.exists()) {  
  139.                     myFile.createNewFile();  
  140.                 }  
  141.   
  142.       
  143.                 htmlPath = myFile.getAbsolutePath();  
  144.             } catch (Exception e) {  
  145.   
  146.             }  
  147.         }  
  148.     }  
  149.   
  150.     /* 用来在sdcard上创建图片 */  
  151.     public void makePictureFile() {  
  152.         String sdString = android.os.Environment.getExternalStorageState();  
  153.         if (sdString.equals(android.os.Environment.MEDIA_MOUNTED)) {  
  154.             try {  
  155.                 File picFile = android.os.Environment  
  156.                         .getExternalStorageDirectory();  
  157.                 String picPath = picFile.getAbsolutePath() + File.separator  
  158.                         + "xiao";  
  159.                 File picDirFile = new File(picPath);  
  160.                 if (!picDirFile.exists()) {  
  161.                     picDirFile.mkdir();  
  162.                 }  
  163.                 File pictureFile = new File(picPath + File.separator  
  164.                         + presentPicture + ".jpg");  
  165.                 if (!pictureFile.exists()) {  
  166.                     pictureFile.createNewFile();  
  167.                 }  
  168.                 picturePath = pictureFile.getAbsolutePath();  
  169.             } catch (Exception e) {  
  170.                 System.out.println("PictureFile Catch Exception");  
  171.             }  
  172.         }  
  173.     }  
  174.   
  175.     public void onDestroy() {  
  176.         super.onDestroy();  
  177.     }  
  178.   
  179.     /* 读取word中的内容写到sdcard上的.html文件中 */  
  180.     public void readAndWrite() {  
  181.   
  182.         try {  
  183.             myFile = new File(htmlPath);  
  184.             output = new FileOutputStream(myFile);  
  185.             String head = "<html><meta http-equiv='Content-Type' content='text/html; charset=utf-8'><body>";  
  186.             String tagBegin = "<p>";  
  187.             String tagEnd = "</p>";  
  188.   
  189.             output.write(head.getBytes());  
  190.   
  191.             int numParagraphs = range.numParagraphs();  
  192.   
  193.             for (int i = 0; i < numParagraphs; i++) {  
  194.                 Paragraph p = range.getParagraph(i);  
  195.   
  196.                 if (p.isInTable()) {  
  197.                     int temp = i;  
  198.                     if (tableIterator.hasNext()) {  
  199.                         String tableBegin = "<table style=\"border-collapse:collapse\" border=1 bordercolor=\"black\">";  
  200.                         String tableEnd = "</table>";  
  201.                         String rowBegin = "<tr>";  
  202.                         String rowEnd = "</tr>";  
  203.                         String colBegin = "<td>";  
  204.                         String colEnd = "</td>";  
  205.   
  206.                         Table table = tableIterator.next();  
  207.   
  208.                         output.write(tableBegin.getBytes());  
  209.   
  210.                         int rows = table.numRows();  
  211.   
  212.                         for (int r = 0; r < rows; r++) {  
  213.                             output.write(rowBegin.getBytes());  
  214.                             TableRow row = table.getRow(r);  
  215.                             int cols = row.numCells();  
  216.                             int rowNumParagraphs = row.numParagraphs();  
  217.                             int colsNumParagraphs = 0;  
  218.                             for (int c = 0; c < cols; c++) {  
  219.                                 output.write(colBegin.getBytes());  
  220.                                 TableCell cell = row.getCell(c);  
  221.                                 int max = temp + cell.numParagraphs();  
  222.                                 colsNumParagraphs = colsNumParagraphs  
  223.                                         + cell.numParagraphs();  
  224.                                 for (int cp = temp; cp < max; cp++) {  
  225.                                     Paragraph p1 = range.getParagraph(cp);  
  226.                                     output.write(tagBegin.getBytes());  
  227.                                     writeParagraphContent(p1);  
  228.                                     output.write(tagEnd.getBytes());  
  229.                                     temp++;  
  230.                                 }  
  231.                                 output.write(colEnd.getBytes());  
  232.                             }  
  233.                             int max1 = temp + rowNumParagraphs;  
  234.                             for (int m = temp + colsNumParagraphs; m < max1; m++) {  
  235.                                 Paragraph p2 = range.getParagraph(m);  
  236.                                 temp++;  
  237.                             }  
  238.                             output.write(rowEnd.getBytes());  
  239.                         }  
  240.                         output.write(tableEnd.getBytes());  
  241.                     }  
  242.                     i = temp;  
  243.                 } else {  
  244.                     output.write(tagBegin.getBytes());  
  245.                     writeParagraphContent(p);  
  246.                     output.write(tagEnd.getBytes());  
  247.                 }  
  248.             }  
  249.   
  250.             String end = "</body></html>";  
  251.             output.write(end.getBytes());  
  252.             output.close();  
  253.         } catch (Exception e) {  
  254.             System.out.println("readAndWrite Exception");  
  255.         }  
  256.     }  
  257.   
  258.     /* 以段落的形式来往html文件中写内容 */  
  259.     public void writeParagraphContent(Paragraph paragraph) {  
  260.         Paragraph p = paragraph;  
  261.         int pnumCharacterRuns = p.numCharacterRuns();  
  262.   
  263.         for (int j = 0; j < pnumCharacterRuns; j++) {  
  264.   
  265.             CharacterRun run = p.getCharacterRun(j);  
  266.   
  267.             if (run.getPicOffset() == 0 || run.getPicOffset() >= 1000) {  
  268.                 if (presentPicture < pictures.size()) {  
  269.                     writePicture();  
  270.                 }  
  271.             } else {  
  272.                 try {  
  273.                     String text = run.text();  
  274.                     if (text.length() >= 2 && pnumCharacterRuns < 2) {  
  275.                         output.write(text.getBytes());  
  276.                     } else {  
  277.                         int size = run.getFontSize();  
  278.                         int color = run.getColor();  
  279.                         String fontSizeBegin = "<font size=\""  
  280.                                 + decideSize(size) + "\">";  
  281.                         String fontColorBegin = "<font color=\""  
  282.                                 + decideColor(color) + "\">";  
  283.                         String fontEnd = "</font>";  
  284.                         String boldBegin = "<b>";  
  285.                         String boldEnd = "</b>";  
  286.                         String islaBegin = "<i>";  
  287.                         String islaEnd = "</i>";  
  288.   
  289.                         output.write(fontSizeBegin.getBytes());  
  290.                         output.write(fontColorBegin.getBytes());  
  291.   
  292.                         if (run.isBold()) {  
  293.                             output.write(boldBegin.getBytes());  
  294.                         }  
  295.                         if (run.isItalic()) {  
  296.                             output.write(islaBegin.getBytes());  
  297.                         }  
  298.   
  299.                         output.write(text.getBytes());  
  300.   
  301.                         if (run.isBold()) {  
  302.                             output.write(boldEnd.getBytes());  
  303.                         }  
  304.                         if (run.isItalic()) {  
  305.                             output.write(islaEnd.getBytes());  
  306.                         }  
  307.                         output.write(fontEnd.getBytes());  
  308.                         output.write(fontEnd.getBytes());  
  309.                     }  
  310.                 } catch (Exception e) {  
  311.                     System.out.println("Write File Exception");  
  312.                 }  
  313.             }  
  314.         }  
  315.     }  
  316.   
  317.     /* 将word中的图片写入到.jpg文件中 */  
  318.     public void writePicture() {  
  319.         Picture picture = (Picture) pictures.get(presentPicture);  
  320.   
  321.         byte[] pictureBytes = picture.getContent();  
  322.   
  323.         Bitmap bitmap = BitmapFactory.decodeByteArray(pictureBytes, 0,  
  324.                 pictureBytes.length);  
  325.   
  326.         makePictureFile();  
  327.         presentPicture++;  
  328.   
  329.         File myPicture = new File(picturePath);  
  330.   
  331.         try {  
  332.   
  333.             FileOutputStream outputPicture = new FileOutputStream(myPicture);  
  334.   
  335.             outputPicture.write(pictureBytes);  
  336.   
  337.             outputPicture.close();  
  338.         } catch (Exception e) {  
  339.             System.out.println("outputPicture Exception");  
  340.         }  
  341.   
  342.         String imageString = "<img src=\"" + picturePath + "\"";  
  343.   
  344.         if (bitmap.getWidth() > screenWidth) {  
  345.             imageString = imageString + " " + "width=\"" + screenWidth + "\"";  
  346.         }  
  347.         imageString = imageString + ">";  
  348.   
  349.         try {  
  350.             output.write(imageString.getBytes());  
  351.         } catch (Exception e) {  
  352.             System.out.println("output Exception");  
  353.         }  
  354.     }  
  355.   
  356.     /* 处理word和html字体的转换 */  
  357.     public int decideSize(int size) {  
  358.   
  359.         if (size >= 1 && size <= 8) {  
  360.             return 1;  
  361.         }  
  362.         if (size >= 9 && size <= 11) {  
  363.             return 2;  
  364.         }  
  365.         if (size >= 12 && size <= 14) {  
  366.             return 3;  
  367.         }  
  368.         if (size >= 15 && size <= 19) {  
  369.             return 4;  
  370.         }  
  371.         if (size >= 20 && size <= 29) {  
  372.             return 5;  
  373.         }  
  374.         if (size >= 30 && size <= 39) {  
  375.             return 6;  
  376.         }  
  377.         if (size >= 40) {  
  378.             return 7;  
  379.         }  
  380.         return 3;  
  381.     }  
  382.   
  383.     /* 处理word和html颜色的转换 */  
  384.     private String decideColor(int a) {  
  385.         int color = a;  
  386.         switch (color) {  
  387.         case 1:  
  388.             return "#000000";  
  389.         case 2:  
  390.             return "#0000FF";  
  391.         case 3:  
  392.         case 4:  
  393.             return "#00FF00";  
  394.         case 5:  
  395.         case 6:  
  396.             return "#FF0000";  
  397.         case 7:  
  398.             return "#FFFF00";  
  399.         case 8:  
  400.             return "#FFFFFF";  
  401.         case 9:  
  402.             return "#CCCCCC";  
  403.         case 10:  
  404.         case 11:  
  405.             return "#00FF00";  
  406.         case 12:  
  407.             return "#080808";  
  408.         case 13:  
  409.         case 14:  
  410.             return "#FFFF00";  
  411.         case 15:  
  412.             return "#CCCCCC";  
  413.         case 16:  
  414.             return "#080808";  
  415.         default:  
  416.             return "#000000";  
  417.         }  
  418.     }  
  419.   
  420.     private void getRange() {  
  421.         FileInputStream in = null;  
  422.         POIFSFileSystem pfs = null;  
  423.         try {  
  424.             in = new FileInputStream(nameStr);  
  425.             pfs = new POIFSFileSystem(in);  
  426.             hwpf = new HWPFDocument(pfs);  
  427.         } catch (Exception e) {  
  428.   
  429.         }  
  430.         range = hwpf.getRange();  
  431.   
  432.         pictures = hwpf.getPicturesTable().getAllPictures();  
  433.   
  434.         tableIterator = new TableIterator(range);  
  435.   
  436.     }  
  437.   
  438.     /* 处理点击返回按钮 */  
  439.     public boolean onKeyDown(int keyCode, KeyEvent event) {  
  440.         if (keyCode == KeyEvent.KEYCODE_BACK) {  
  441.             Intent intent = new Intent();  
  442.             intent.setClass(ViewFile.this, browse.class);  
  443.             startActivity(intent);  
  444.             this.finish();  
  445.         }  
  446.         return false;  
  447.     }  
  448. }  

 

2、 browse.java 文件

 

[java]  view plain copy
  1. public class browse extends Activity {  
  2.     private  ListView listV = null;  
  3.     private List<File> list = null;  
  4.     private int a[] = {R.drawable.doc,R.drawable.dir};  
  5.     private ArrayList<HashMap<String, Object>> recordItem;  
  6.       
  7.     private File presentFile;  
  8.       
  9.     public void onCreate(Bundle savedInstanceState) {  
  10.         super.onCreate(savedInstanceState);  
  11.         setContentView(R.layout.browse);  
  12.         listV = (ListView)findViewById(R.id.list);  
  13.         list_files();  
  14.     }  
  15.     private void list_files(){  
  16.         File path = android.os.Environment.getExternalStorageDirectory();  
  17.         presentFile = path;  
  18.         File[] file = path.listFiles();  
  19.         fill(file);  
  20.     }  
  21.     private void fill(File[] file){  
  22.         SimpleAdapter adapter = null;  
  23.         recordItem = new ArrayList<HashMap<String, Object>>();  
  24.         list = new ArrayList<File>();  
  25.         for(File f: file){  
  26.             if(Invalid(f) == 1){  
  27.                 list.add(f);  
  28.                 HashMap<String, Object> map = new HashMap<String, Object>();  
  29.                 map.put("picture", a[0]);  
  30.                 map.put("name", f.getName());  
  31.                 recordItem.add(map);  
  32.             }  
  33.             if(Invalid(f) == 0){  
  34.                 list.add(f);  
  35.                 HashMap<String, Object> map = new HashMap<String, Object>();  
  36.                 map.put("picture", a[1]);  
  37.                 map.put("name", f.getName());  
  38.                 recordItem.add(map);  
  39.             }  
  40.         }  
  41.           
  42.           
  43.         adapter = new SimpleAdapter(this, recordItem, R.layout.item, new String[]{"picture""name"}, new int[]{R.id.picture, R.id.text});  
  44.         listV.setAdapter(adapter);  
  45.         listV.setAdapter(adapter);  
  46.         listV.setOnItemClickListener(new Clicker());  
  47.     }  
  48.   
  49.     private int Invalid(File f){  
  50.         if(f.isDirectory()){  
  51.             return 0;  
  52.         }  
  53.         else{  
  54.             String filename = f.getName().toLowerCase();  
  55.             if(filename.endsWith(".doc")){  
  56.                 return 1;  
  57.             }  
  58.             return 2;  
  59.         }  
  60.     }  
  61.     private class Clicker implements OnItemClickListener{  
  62.           
  63.         public void onItemClick(AdapterView<?> arg0, View arg1, int arg2,  
  64.                 long arg3) {  
  65.             // TODO Auto-generated method stub  
  66.             Intent i = new Intent();  
  67.             String nameStr = null;  
  68.             i.setClass(browse.this, ViewFile.class);  
  69.             Bundle bundle = new Bundle();  
  70.             File file = list.get(arg2);  
  71.             presentFile = file;  
  72.             if(file.isDirectory()){  
  73.                 File[] files = file.listFiles();  
  74.                 fill(files);  
  75.                   
  76.             }  
  77.             else{  
  78.                 nameStr = file.getAbsolutePath();  
  79.                 bundle.putString("name", nameStr);  
  80.                 i.putExtras(bundle);  
  81.                 startActivity(i);  
  82.                 finish();  
  83.             }  
  84.         }  
  85.     }  
  86.       
  87.     public boolean onKeyDown(int keyCode, KeyEvent event) {  
  88.         if (keyCode == KeyEvent.KEYCODE_BACK) {  
  89.             if(presentFile.isDirectory()){  
  90.                 if(presentFile.equals(android.os.Environment.getExternalStorageDirectory())){  
  91.                     this.finish();  
  92.                 }  
  93.                 else{  
  94.                     presentFile = presentFile.getParentFile();  
  95.                     File file = presentFile;  
  96.                     File[] files = file.listFiles();  
  97.                     fill(files);  
  98.                 }  
  99.             }  
  100.             if(presentFile.isFile()){  
  101.                 if(presentFile.getParentFile().isDirectory()){  
  102.                     presentFile = presentFile.getParentFile();  
  103.                     File file = presentFile;  
  104.                     File[] files = file.listFiles();  
  105.                     fill(files);  
  106.                 }  
  107.             }  
  108.         }  
  109.         return false;     
  110.      }  
  111.   
  112. }  

 

最后要添加权限哦

 

[html]  view plain copy
  1. <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>  


运行结果:

源码下载地址:http://download.csdn.net/detail/u011213088/5929693

目前还存在一些问题,比如,打开带有数学公式的文档有时候显示不了,求解决办法!

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
android 使用poi读取高版本excel, 解决以下这两个错误 java.lang.NoClassDefFoundError: Failed resolution of: Ljavax/xml/stream/XMLEventFactory; at org.apache.poi.openxml4j.opc.internal.marshallers.PackagePropertiesMarshaller.(PackagePropertiesMarshaller.java:41) at org.apache.poi.openxml4j.opc.OPCPackage.init(OPCPackage.java:161) at org.apache.poi.openxml4j.opc.OPCPackage.(OPCPackage.java:141) at org.apache.poi.openxml4j.opc.ZipPackage.(ZipPackage.java:97) at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:324) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:184) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:149) javax.xml.stream.FactoryConfigurationError: Provider com.sun.xml.internal.stream.events.XMLEventFactoryImpl not found at javax.xml.stream.FactoryFinder.newInstance(Unknown Source) at javax.xml.stream.FactoryFinder.newInstance(Unknown Source) at javax.xml.stream.FactoryFinder.find(Unknown Source) at javax.xml.stream.FactoryFinder.find(Unknown Source) at javax.xml.stream.XMLEventFactory.newInstance(Unknown Source) at org.apache.poi.openxml4j.opc.internal.marshallers.PackagePropertiesMarshaller.(PackagePropertiesMarshaller.java:41) at org.apache.poi.openxml4j.opc.OPCPackage.init(OPCPackage.java:161) at org.apache.poi.openxml4j.opc.OPCPackage.(OPCPackage.java:141) at org.apache.poi.openxml4j.opc.ZipPackage.(ZipPackage.java:97) at org.apache.poi.openxml4j.opc.OPCPackage.open(OPCPackage.java:324) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:184) at org.apache.poi.ss.usermodel.WorkbookFactory.create(WorkbookFactory.java:149)
YOLO高分设计资源源码,详情请查看资源内容使用说明 YOLO高分设计资源源码,详情请查看资源内容使用说明 YOLO高分设计资源源码,详情请查看资源内容使用说明 YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明YOLO高分设计资源源码,详情请查看资源内容使用说明

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值