0

各行に 100 行を含むファイルが あり、TagVertex クラスの「id」であるランクを指定してタグ値を取得する必要がある
1 つのタグが含まれています。

    public abstract class Vertex <T>{

         String vertexId ;// example Tag1

         T vertexValue ;

         public  abstract  T computeVertexValue();
}


   public class TagVertex extends Vertex<String> {

      @Override
      public String computeVertexValue() {
       // How to get the String from my file?
         return null;
}

Tこれを試してみますが、うまくいきません

public static void main(String args[]) {
  File source //

  int i=90;

  int j=0;

  String s = null;

  try {
    Scanner scanner = new Scanner(source);

    while (scanner.hasNextLine()) {
        if (j==i) s= scanner.nextLine();

         else j++;
    }


} catch (FileNotFoundException e) {
    // TODO Auto-generated catch block
    e.printStackTrace();
}

System.out.println(s);
  }}
4

2 に答える 2