Access string variable outside for loop in java?

柔情痞子 提交于 2021-01-29 05:37:41

问题


hi folks i want to access a string variable outside for loop, so that i can use it for further coding. Here i am trying to get the values from Jtable and store it in string, to create a database table. The Whole Code is here: http://textuploader.com/?p=6&id=zVEWY

Coding :
int row = table.getRowCount();

int column = table.getColumnCount();

for (int j = 0; j < row; j++) {

for (int i = 0; i < column; i++) {

 //System.out.println(table.getValueAt(j, i));
  String readstr = (String) table.getValueAt(j, i);   // I WANT TO ACCESS THIS STRING


 }

 }


 try{
   // FILE READ AND TABLE CREATE
   String tname="example";
   String dbname="DB123";
    Class.forName("com.mysql.jdbc.Driver");
    Connection conn= (Connection)    DriverManager.getConnection("jdbc:mysql://localhost:3306/DB123","root","");
    Statement stmt=(Statement) conn.createStatement();

    System.out.println("connect");



     DatabaseMetaData dmd = (DatabaseMetaData) conn.getMetaData();
     while((readstr=brr.readLine())!=null)                     // TO USE IT HERE
    {
     ResultSet rs = dmd.getTables(null,"MigrationDB", "example", null);
     //set not null column
     if (String.valueOf(readstr).contains("NO"))
  readstr=readstr.replaceAll("NO", "not null");
     else if(String.valueOf(readstr).contains("YES"))
       readstr=readstr.replaceAll("YES", "");
     if(String.valueOf(readstr).contains("PRIMARY"))
         readstr=readstr.replaceFirst("PRIMARY","primary key");
    System.out.println("replace string "+readstr);
  int k=1;
   if (!rs.next())
  {
  stmt.executeUpdate("CREATE TABLE "+tname+ "("+readstr+")");

    }
 else{
     System.out.println(readstr);
     stmt.executeUpdate("ALTER TABLE "+tname+ " ADD("+readstr+")");
      System.out.println("altered");

      }
     }

    }
     catch (Exception e){}

   }


    }

Thank You.


回答1:


You need to understand what local variables are and what is their lifetime. I suggest reading through this tutorial: http://www.tutorialspoint.com/java/java_variable_types.htm

In you case, just declaring readstr outside the for loop would do what you want.

String readstr;
for(//loop condition) {
readstr = read value ;
}


来源:https://stackoverflow.com/questions/16078459/access-string-variable-outside-for-loop-in-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!