tempprint.java

来自「基于Java的地图数据管理软件。使用MySQL数据库管理系统。」· Java 代码 · 共 41 行

JAVA
41
字号
package net.aetherial.gis.our.auto.extend;
import net.aetherial.gis.our.auto.Auto;
/**
 * <p>Title: </p>
 *
 * <p>Description: </p>
 *
 * <p>Copyright: Copyright (c) 2004</p>
 *
 * <p>Company: </p>
 *
 * @author not attributable
 * @version 1.0
 */
public class TempPrint extends Auto {
  public TempPrint() {
    Detach detach = new Detach(null);
      detach.setDirectory("D:\\GIS\\GPS测量数据\\整理完毕\\肥西\\");
      detach.Save("D:\\GIS\\GPS测量数据\\分类型\\肥西.csv",detach.getAllGrade());
      detach.msg("OK");
  }

  public String run() {
    if (super.input == null) {
      System.out.println("super.input");
      return "";
    }
    String n = "";
    String[] type = {
        "水泥", "油路","砂石路", "土路"};
    for (int j = 0; j < type.length; j++) {
      for (int i = 0; i < this.input.length; i++) {
        this.open(this.input[i]);
        //n = n + this.getGrade(type[j]);
        this.setMemoryReset();
      }
    }
    return n;
  }
}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?