当前位置:七道奇文章资讯编程技术Java编程
日期:2011-03-22 16:16:00  来源:本站整理

提替换码列表[Java编程]

赞助商链接



  本文“提替换码列表[Java编程]”是由七道奇为您精心收集,来源于网络转载,文章版权归文章作者所有,本站不对其观点以及内容做任何评价,请读者自行判断,以下是其具体内容:

关于本书每一个完好的代码列表(不是代码段),大家无疑会注意到它们都用特别的注释暗号起始与完毕('//:'和'///:~').之所以要包含这种标志信息,是为了能将代码从本书自动提取到兼容的源码文件中.在我的前一本书里,我计划了一个系统,可将测试过的代码文件自动归并到书中.但关于这本书,我发现一种更简便的做法是一旦通过了最初的测试,就把代码粘贴到书中.并且由于很难第一次就编译通过,所以我在书的内部编辑代码.但若何提取并测试代码呢?这个程序就是关键.假如你打算办理一个文字处理的问题,那么它也很有操纵代价.该例也演示了String类的很多特点.
我首先将整本书都以ASCII文本格局保存成一个独立的文件.CodePackager程序有两种运行情势(在usageString有呼应的描写):假如利用-p标志,程序就会查抄一个包含了ASCII文本(即本书的内容)的一个输入文件.它会遍历这个文件,按照注释暗号提取出代码,并用位于第一行的文件名来决意成立文件利用什么名字.除此以外,在需求将文件置入一个特别目录的时刻,它还会查抄package语句(按照由package语句指定的途径挑选).
但这样还不够.程序还要对包(package)名举行跟踪,从而监督章内发生的改变.由于每一章利用的全部包都以c02,c03,c04等等起头,用于标志它们所属的是哪一章(除那些以com起头的以外,它们在对差别的章举行跟踪的时刻会被忽视)——只要每一章的第一个代码列表包含了一个package,所以CodePackager程序能知道每一章发生的改变,并将后续的文件放到新的子目录里.
每个文件提取出来时,城市置入一个SourceCodeFile对象,随后再将那个对象置入一个调集(背面还会细致报告这个历程).这些SourceCodeFile对象可以简单地保存在文件中,那恰是本项目的第二个用处.假如直接调用CodePackager,不增添-p标志,它就会将一个“打包”文件作为输入.那个文件随后会被提取(释放)进入单独的文件.所以-p标志的意思就是提取出来的文件已被“打包”(packed)进入这个单一的文件.
但为什么还要如此麻烦地利用打包文件呢?这是由于差别的计算机平台用差别的方法在文件里保存文本信息.此中最大的问题是换行字符的表示办法;当然,还有大概存在另一些问题.但是,Java有一种特别范例的IO数据流——DataOutputStream——它可以保证“无论数据来自何种机械,只要利用一个DataInputStream收取这些数据,便可用本机精确的格局保存它们”.也就是说,Java负责掌握与差别平台有关的全部细节,而这恰是Java最具魅力的一点.所以-p标志能将全部东西都保存到单一的文件里,并采取通用的格局.用户可从Web下载这个文件以及Java程序,然后对这个文件运行CodePackager,同时不指定-p标志,文件便会释放到系统中精确的场所(亦可指定另一个子目录;不然就在当前目录成立子目录).为确保不会留下与特定平台有关的格局,但凡需求描写一个文件或途径的时刻,我们就利用File对象.除此以外,还有一项分外的安全办法:在每个子目录里都放入一个空文件;那个文件的名字指出在那个子目录里应找到多少个文件.
下面是完好的代码,背面会对它举行具体的阐明:

//: CodePackager.java
// "Packs" and "unpacks" the code in "Thinking 
// in Java" for cross-platform distribution.
/* Commented so CodePackager sees it and starts
   a new chapter directory, but so you don't 
   have to worry about the directory where this
   program lives:
package c17;
*/
import java.util.*;
import java.io.*;

class Pr {
  static void error(String e) {
    System.err.println("ERROR: " + e);
    System.exit(1);
  }
}

class IO {
  static BufferedReader disOpen(File f) {
    BufferedReader in = null;
    try {
      in = new BufferedReader(
        new FileReader(f));
    } catch(IOException e) {
      Pr.error("could not open " + f);
    }
    return in;
  }
  static BufferedReader disOpen(String fname) {
    return disOpen(new File(fname));
  }
  static DataOutputStream dosOpen(File f) {
    DataOutputStream in = null;
    try {
      in = new DataOutputStream(
        new BufferedOutputStream(
          new FileOutputStream(f)));
    } catch(IOException e) {
      Pr.error("could not open " + f);
    }
    return in;
  }
  static DataOutputStream dosOpen(String fname) {
    return dosOpen(new File(fname));
  }
  static PrintWriter psOpen(File f) {
    PrintWriter in = null;
    try {
      in = new PrintWriter(
        new BufferedWriter(
          new FileWriter(f)));
    } catch(IOException e) {
      Pr.error("could not open " + f);
    }
    return in;
  }
  static PrintWriter psOpen(String fname) {
    return psOpen(new File(fname));
  }
  static void close(Writer os) {
    try {
      os.close();
    } catch(IOException e) {
      Pr.error("closing " + os);
    }
  }
  static void close(DataOutputStream os) {
    try {
      os.close();
    } catch(IOException e) {
      Pr.error("closing " + os);
    }
  }
  static void close(Reader os) {
    try {
      os.close();
    } catch(IOException e) {
      Pr.error("closing " + os);
    }
  }
}

class SourceCodeFile {
  public static final String 
    startMarker = "//:", // Start of source file
    endMarker = "} ///:~", // End of source
    endMarker2 = "}; ///:~", // C++ file end
    beginContinue = "} ///:Continued",
    endContinue = "///:Continuing",
    packMarker = "###", // Packed file header tag
    eol = // Line separator on current system
      System.getProperty("line.separator"),
    filesep = // System's file path separator
      System.getProperty("file.separator");
  public static String copyright = "";
  static {
    try {
      BufferedReader cr =
        new BufferedReader(
          new FileReader("Copyright.txt"));
      String crin;
      while((crin = cr.readLine()) != null)
        copyright += crin + "\n";
      cr.close();
    } catch(Exception e) {
      copyright = "";
    }
  }
  private String filename, dirname,
    contents = new String();
  private static String chapter = "c02";
  // The file name separator from the old system:
  public static String oldsep;
  public String toString() {
    return dirname + filesep + filename;
  }
  // Constructor for parsing from document file:
  public SourceCodeFile(String firstLine, 
      BufferedReader in) {
    dirname = chapter;
    // Skip past marker:
    filename = firstLine.substring(
        startMarker.length()).trim();
    // Find space that terminates file name:
    if(filename.indexOf(' ') != -1)
      filename = filename.substring(
          0, filename.indexOf(' '));
    System.out.println("found: " + filename);
    contents = firstLine + eol;
    if(copyright.length() != 0)
      contents += copyright + eol;
    String s;
    boolean foundEndMarker = false;
    try {
      while((s = in.readLine()) != null) {
        if(s.startsWith(startMarker))
          Pr.error("No end of file marker for " +
            filename);
        // For this program, no spaces before 
        // the "package" keyword are allowed
        // in the input source code:
        else if(s.startsWith("package")) {
          // Extract package name:
          String pdir = s.substring(
            s.indexOf(' ')).trim();
          pdir = pdir.substring(
            0, pdir.indexOf(';')).trim();
          // Capture the chapter from the package
          // ignoring the 'com' subdirectories:
          if(!pdir.startsWith("com")) {
            int firstDot = pdir.indexOf('.');
            if(firstDot != -1)
              chapter = 
                pdir.substring(0,firstDot);
            else
              chapter = pdir;
          }
          // Convert package name to path name:
          pdir = pdir.replace(
            '.', filesep.charAt(0));
          System.out.println("package " + pdir);
          dirname = pdir;
        }
        contents += s + eol;
        // Move past continuations:
        if(s.startsWith(beginContinue))
          while((s = in.readLine()) != null)
            if(s.startsWith(endContinue)) {
              contents += s + eol;
              break;
            }
        // Watch for end of code listing:
        if(s.startsWith(endMarker) ||
           s.startsWith(endMarker2)) {
          foundEndMarker = true;
          break;
        }
      }
      if(!foundEndMarker)
        Pr.error(
          "End marker not found before EOF");
      System.out.println("Chapter: " + chapter);
    } catch(IOException e) {
      Pr.error("Error reading line");
    }
  }
  // For recovering from a packed file:
  public SourceCodeFile(BufferedReader pFile) {
    try {
      String s = pFile.readLine();
      if(s == null) return;
      if(!s.startsWith(packMarker))
        Pr.error("Can't find " + packMarker
          + " in " + s);
      s = s.substring(
        packMarker.length()).trim();
      dirname = s.substring(0, s.indexOf('#'));
      filename = s.substring(s.indexOf('#') + 1);
      dirname = dirname.replace(
        oldsep.charAt(0), filesep.charAt(0));
      filename = filename.replace(
        oldsep.charAt(0), filesep.charAt(0));
      System.out.println("listing: " + dirname 
        + filesep + filename);
      while((s = pFile.readLine()) != null) {
        // Watch for end of code listing:
        if(s.startsWith(endMarker) ||
           s.startsWith(endMarker2)) {
          contents += s;
          break;
        }
        contents += s + eol;
      }
    } catch(IOException e) {
      System.err.println("Error reading line");
    }
  }
  public boolean hasFile() { 
    return filename != null; 
  }
  public String directory() { return dirname; }
  public String filename() { return filename; }
  public String contents() { return contents; }
  // To write to a packed file:
  public void writePacked(DataOutputStream out) {
    try {
      out.writeBytes(
        packMarker + dirname + "#" 
        + filename + eol);
      out.writeBytes(contents);
    } catch(IOException e) {
      Pr.error("writing " + dirname + 
        filesep + filename);
    }
  }
  // To generate the actual file:
  public void writeFile(String rootpath) {
    File path = new File(rootpath, dirname);
    path.mkdirs();
    PrintWriter p =
      IO.psOpen(new File(path, filename));
    p.print(contents);
    IO.close(p);
  }
}

class DirMap {
  private Hashtable t = new Hashtable();
  private String rootpath;
  DirMap() {
    rootpath = System.getProperty("user.dir");
  }
  DirMap(String alternateDir) {
    rootpath = alternateDir;
  }
  public void add(SourceCodeFile f){
    String path = f.directory();
    if(!t.containsKey(path))
      t.put(path, new Vector());
    ((Vector)t.get(path)).addElement(f);
  }
  public void writePackedFile(String fname) {
    DataOutputStream packed = IO.dosOpen(fname);
    try {
      packed.writeBytes("###Old Separator:" +
        SourceCodeFile.filesep + "###\n");
    } catch(IOException e) {
      Pr.error("Writing separator to " + fname);
    }
    Enumeration e = t.keys();
    while(e.hasMoreElements()) {
      String dir = (String)e.nextElement();
      System.out.println(
        "Writing directory " + dir);
      Vector v = (Vector)t.get(dir);
      for(int i = 0; i < v.size(); i++) {
        SourceCodeFile f = 
          (SourceCodeFile)v.elementAt(i);
        f.writePacked(packed);
      }
    }
    IO.close(packed);
  }
  // Write all the files in their directories:
  public void write() {
    Enumeration e = t.keys();
    while(e.hasMoreElements()) {
      String dir = (String)e.nextElement();
      Vector v = (Vector)t.get(dir);
      for(int i = 0; i < v.size(); i++) {
        SourceCodeFile f = 
          (SourceCodeFile)v.elementAt(i);
        f.writeFile(rootpath);
      }
      // Add file indicating file quantity
      // written to this directory as a check:
      IO.close(IO.dosOpen(
        new File(new File(rootpath, dir),
          Integer.toString(v.size())+".files")));
    }
  }
}

public class CodePackager {
  private static final String usageString =
  "usage: java CodePackager packedFileName" +
  "\nExtracts source code files from packed \n" +
  "version of Tjava.doc sources into " +
  "directories off current directory\n" +
  "java CodePackager packedFileName newDir\n" +
  "Extracts into directories off newDir\n" +
  "java CodePackager -p source.txt packedFile" +
  "\nCreates packed version of source files" +
  "\nfrom text version of Tjava.doc";
  private static void usage() {
    System.err.println(usageString);
    System.exit(1);
  }
  public static void main(String[] args) {
    if(args.length == 0) usage();
    if(args[0].equals("-p")) {
      if(args.length != 3)
        usage();
      createPackedFile(args);
    }
    else {
      if(args.length > 2)
        usage();
      extractPackedFile(args);
    }
  }
  private static String currentLine; 
  private static BufferedReader in;
  private static DirMap dm;
  private static void 
  createPackedFile(String[] args) {
    dm = new DirMap();
    in = IO.disOpen(args[1]);
    try {
      while((currentLine = in.readLine()) 
          != null) {
        if(currentLine.startsWith(
            SourceCodeFile.startMarker)) {
          dm.add(new SourceCodeFile(
                   currentLine, in));
        }
        else if(currentLine.startsWith(
            SourceCodeFile.endMarker))
          Pr.error("file has no start marker");
        // Else ignore the input line
      }
    } catch(IOException e) {
      Pr.error("Error reading " + args[1]);
    }
    IO.close(in);
    dm.writePackedFile(args[2]);
  }
  private static void 
  extractPackedFile(String[] args) {
    if(args.length == 2) // Alternate directory
      dm = new DirMap(args[1]);
    else // Current directory
      dm = new DirMap();
    in = IO.disOpen(args[0]);
    String s = null;
    try {
       s = in.readLine();
    } catch(IOException e) {
      Pr.error("Cannot read from " + in);
    }
    // Capture the separator used in the system
    // that packed the file:
    if(s.indexOf("###Old Separator:") != -1 ) {
      String oldsep = s.substring(
        "###Old Separator:".length());
      oldsep = oldsep.substring(
        0, oldsep. indexOf('#'));
      SourceCodeFile.oldsep = oldsep;
    }
    SourceCodeFile sf = new SourceCodeFile(in);
    while(sf.hasFile()) {
      dm.add(sf);
      sf = new SourceCodeFile(in);
    }
    dm.write();
  }
} ///:~

我们注意到package语句已经作为注释标志出来了.由于这是本章的第一个程序,所以package语句是必须的,用它奉告CodePackager已改换到另一章.但是把它放入包里却会成为一个问题.当我们成立一个包的时刻,需求将后果程序同一个特定的目录构造接洽在一同,这一做法对本书的大大都例子都是实用的.但在这里,CodePackager程序必须在一个专用的目录里编译和运行,所以package语句作为注释标志出去.但对CodePackager来说,它“看起来”仍然象一个普通的package语句,因为程序还不是分外复杂,不能侦查到多行注释(没有必要做得这么复杂,这里只要求便利就行).
头两个类是“支持/工具”类,作用是使程序剩余的部份在编写时越发联贯,也更便于阅读.第一个是Pr,它近似ANSI C的perror库,二者都能打印出一条错误提醒消息(但同时也会退出程序).第二个类将文件的成立历程封装在内,这个历程已在第10章介绍过了;大家已经知道,这样做很快就会变得非常负担和麻烦.为办理这个问题,第10章供应的筹划努力于新类的成立,但这儿的“静态”办法已经利用过了.在那些办法中,正常的违例会被捕捉,并呼应地举行处理.这些办法使剩余的代码显得越发清爽,更易阅读.
帮忙办理问题的第一个类是SourceCodeFile(源码文件),它代表本书一个源码文件包含的全部信息(内容、文件名以及目录).它同时还包含了一系列String常数,辨别代表一个文件的开始与完毕;在打包文件内利用的一个标志;当前系统的换行符;文件途径脱离符(注意要用System.getProperty()侦查本地版本是什么);以及一大段版权声明,它是从下面这个Copyright.txt文件里提取出来的:

//////////////////////////////////////////////////
// Copyright (c) Bruce Eckel, 1998
// Source code file from the book "Thinking in Java"
// All rights reserved EXCEPT as allowed by the
// following statements: You may freely use this file
// for your own work (personal or commercial),
// including modifications and distribution in
// executable form only. Permission is granted to use
// this file in classroom situations, including its
// use in presentation materials, as long as the book
// "Thinking in Java" is cited as the source. 
// Except in classroom situations, you may not copy
// and distribute this code; instead, the sole
// distribution point is http://www.BruceEckel.com 
// (and official mirror sites) where it is
// freely available. You may not remove this
// copyright and notice. You may not distribute
// modified versions of the source code in this
// package. You may not use this file in printed
// media without the express permission of the
// author. Bruce Eckel makes no representation about
// the suitability of this software for any purpose.
// It is provided "as is" without express or implied
// warranty of any kind, including any implied
// warranty of merchantability, fitness for a
// particular purpose or non-infringement. The entire
// risk as to the quality and performance of the
// software is with you. Bruce Eckel and the
// publisher shall not be liable for any damages
// suffered by you or any third party as a result of
// using or distributing software. In no event will
// Bruce Eckel or the publisher be liable for any
// lost revenue, profit, or data, or for direct,
// indirect, special, consequential, incidental, or
// punitive damages, however caused and regardless of
// the theory of liability, arising out of the use of
// or inability to use software, even if Bruce Eckel
// and the publisher have been advised of the
// possibility of such damages. Should the software
// prove defective, you assume the cost of all
// necessary servicing, repair, or correction. If you
// think you've found an error, please email all
// modified files with clearly commented changes to:
// Bruce@EckelObjects.com. (please use the same
// address for non-code errors found in the book).
//////////////////////////////////////////////////

从一个打包文件中提取文件时,当初所用系统的文件脱离符也会标注出来,以便用本地系统实用的标记替换它.
当前章的子目录保存在chapter字段中,它初始化成c02(大家可注意一下第2章的列表恰好没有包含一个打包语句).只有在当前文件里发现一个package(打包)语句时,chapter字段才会发生改变.

1. 构建一个打包文件
第一个构建器用于从本书的ASCII文本版里提取出一个文件.发出调用的代码(在列表里较深的地方)会读入并查抄每一行,直到找到与一个列表的开首符合的为止.在这个时刻,它就会新建一个SourceCodeFile对象,将第一行的内容(已经过调用代码读入了)传送给它,同时还要传送BufferedReader对象,以便在这个缓冲区中提取源码列表剩余的内容.
从这时起,大家会发现String办法被频繁应用.为提取出文件名,需调用substring()的过载版本,令其从一个起始偏移开始,一向读到字串的末尾,从而形成一个“子串”.为算出这个起始索引,先要用length()得出startMarker的总长,再用trim()删除字串头尾多余的空格.第一行在文件名后也大概有一些字符;它们是用indexOf()侦测出来的.若没有发现找到我们想探求的字符,就返回-1;若找到那些字符,就返回它们第一次呈现的位置.注意这也是indexOf()的一个过载版本,采取一个字串作为参数,而非一个字符.
解析出并保存好文件名后,第一行会被置入字串contents中(该字串用于保存源码清单的完好正文).随后,将剩余的代码行读入,并归并进入contents字串.当然事情并没有想象的那么简单,因为特定的情形需加以分外的掌握.一种情形是错误查抄:若直接碰到一个startMarker(起始标志),表明当前操作的这个代码列表没有设置一个完毕标志.这属于一个出错条件,需求退出程序.
另一种特别情形与package关键字有关.固然Java是一种安闲情势的语言,但这个程序要求package关键字必须位于行首.若发现package关键字,就通过查抄位于开首的空格以及位于末尾的分号,从而提取出包名(注意亦可一次单独的操作实现,办法是利用过载的substring(),令其同时查抄起始和完毕索引位置).随后,将包名中的点号替换成特定的文件脱离符——当然,这里要假定文件脱离符唯一一个字符的长度.固然这个假定大概对目前的全部系统都是实用的,但一旦碰到问题,一定不要忘了查抄一下这里.
默许操作是将每一行都衔接到contents里,同时还有换行字符,直到碰到一个endMarker(完毕标志)为止.该标志指出构建器该当终止了.若在endMarker之前碰到了文件末尾,就认为存在一个错误.

2. 从打包文件中提取
第二个构建器用于将源码文件从打包文件中恢复(提取)出来.在这儿,作为调用者的办法没必要耽忧会跳过一些中间文本.打包文件包含了全部源码文件,它们彼此间精密地靠在一同.需求传送给该构建器的仅仅是一个BufferedReader,它代表着“信息源”.构建器会从中提取出自己需求的信息.但在每个代码列表开始的地方还有一些配置信息,它们的身份是用packMarker(打包标志)指出的.若packMarker不存在,意味着调用者试图用错误的办法来利用这个构建器.
一旦发现packMarker,就会将其剥离出来,并提取出目录名(用一个'#'末尾)以及文件名(直到行末).不管在哪类情形下,旧脱离符城市被替换成本地实用的一个脱离符,这是用String replace()办法实现的.老的脱离符被置于打包文件的开首,在代码列表稍靠后的一部份便可看到是若何把它提取出来的.
构建器剩下的部份就非常简单了.它读入每一行,把它归并到contents里,直到碰见endMarker为止.

3. 程序列表的存取
接下来的一系列办法是简单的拜候器:directory()、filename()(注意办法大概与字段有相同的拼写和大小写情势)和contents().而hasFile()用于指出这个对象能否包含了一个文件(很快就会知道为什么需求这个).
最后三个办法努力于将这个代码列表写进一个文件——要末通过writePacked()写入一个打包文件,要末通过writeFile()写入一个Java源码文件.writePacked()需求的唯一东西就是DataOutputStream,它是在别的地方翻开的,代表着预备写入的文件.它先把头信息置入第一行,再调用writeBytes()将contents(内容)写成一种“通用”格局.
预备写Java源码文件时,必须先把文件建好.这是用IO.psOpen()实现的.我们需求向它传送一个File对象,此中不但包含了文件名,也包含了途径信息.但目前的问题是:这个途径实际存在吗?用户大概决意将全部源码目录都置入一个完好差别的子目录,那个目录大概是尚不存在的.所以在正式写每个文件之前,都要调用File.mkdirs()办法,建好我们想向此中写入文件的目录途径.它可一次性建好整个途径.

4. 整套列表的包涵
以子目录的情势组织代码列表是非常便利的,固然这要求先在内存中建好整套列表.之所以要这样做,还有另一个很有说服力的缘由:为了构建更“安康”的系统.也就是说,在成立代码列表的每个子目录时,城市加入一个额外的文件,它的名字包含了那个目录内应有的文件数目.
DirMap类可帮忙我们实现这一效果,并有效地演示了一个“多重映射”的概述.这是通过一个散列表(Hashtable)实现的,它的“键”是预备成立的子目录,而“值”是包含了那个特定目录中的SourceCodeFile对象的Vector对象.所以,我们在这儿并非将一个“键”映射(或对应)到一个值,而是通过对应的Vector,将一个键“多重映射”到一系列值.固然这听起来仿佛很复杂,但具体实现时倒是非常简单和直接的.大家可以看到,DirMap类的大大都代码都与向文件中的写入有关,而非与“多重映射”有关.与它有关的代码仅极少数罢了.
可通过两种方法成立一个DirMap(目录映射或对应)关系:默许构建器假定我们但愿目录从当前位置向下展开,而另一个构建器让我们为起始目录指定一个备用的“绝对”途径.
add()办法是一个采纳的行动对比密集的场所.首先将directory()从我们想增添的SourceCodeFile里提取出来,然后查抄散列表(Hashtable),看看此中能否已经包含了那个键.假如没有,就向散列表加入一个新的Vector,并将它同那个键关联到一同.到这时,不管采纳的是什么途径,Vector都已经就位了,可以将它提取出来,以便增添SourceCodeFile.由于Vector可象这样同散列表便利地归并到一同,所以我们从两方面都能感受得非常便利.
写一个打包文件时,需翻开一个预备写入的文件(当作DataOutputStream翻开,使数据具有“通用”性),并在第一行写入与老的脱离符有关的头信息.接着产生对Hashtable键的一个Enumeration(列举),并遍历此中,挑选每一个目录,并获得与那个目录有关的Vector,使那个Vector中的每个SourceCodeFile都能写入打包文件中.
用write()将Java源码文件写入它们对应的目录时,采取的办法几近与writePackedFile()完好一致,因为两个办法都只需简单调用SourceCodeFile中得当的办法.但在这里,根途径会传送给SourceCodeFile.writeFile().全部文件都写好后,名字中指定了已写文件数目的那个附加文件也会被写入.

5. 主程序
前面介绍的那些类都要在CodePackager顶用到.大家首先看到的是用法字串.一旦终究用户不精确地调用了程序,就会打印出介绍精确用法的这个字串.调用这个字串的是usage()办法,同时还要退出程序.main()唯一的任务就是判断我们但愿成立一个打包文件,还是但愿从一个打包文件中提取什么东西.随后,它负责保证利用的是精确的参数,并调用得当的办法.
成立一个打包文件时,它默许位于当前目录,所以我们用默许构建器成立DirMap.翻开文件后,此中的每一行城市读入,并查抄能否符合特别的条件:
(1) 若行首是一个用于源码列表的起始标志,就新建一个SourceCodeFile对象.构建器会读入源码列表剩下的全部内容.后果产生的句柄将直接加入DirMap.
(2) 若行首是一个用于源码列表的完毕标志,表明某个地方呈现错误,因为完毕标志该当只能由SourceCodeFile构建器发现.

提取/释放一个打包文件时,提取出来的内容可进入当前目录,亦可进入另一个备用目录.所以需求呼应地成立DirMap对象.翻开文件,并将第一行读入.老的文件途径脱离符信息将从这一行中提取出来.随后按照输入来成立第一个SourceCodeFile对象,它会加入DirMap.只要包含了一个文件,新的SourceCodeFile对象就会成立并加入(成立的最后一个用光输入内容后,会简单地返回,然后hasFile()会返回一个错误).
  以上是“提替换码列表[Java编程]”的内容,如果你对以上该文章内容感兴趣,你可以看看七道奇为您推荐以下文章:
  • 提替换码列表
  • 本文地址: 与您的QQ/BBS好友分享!
    • 好的评价 如果您觉得此文章好,就请您
        0%(0)
    • 差的评价 如果您觉得此文章差,就请您
        0%(0)

    文章评论评论内容只代表网友观点,与本站立场无关!

       评论摘要(共 0 条,得分 0 分,平均 0 分) 查看完整评论
    Copyright © 2020-2022 www.xiamiku.com. All Rights Reserved .