Skip to Main Content

Java Development Tools

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

data source configuration in Jdev 11g

2668788Aug 26 2014 — edited Aug 27 2014

Hi everyone,

I am using jdev 11.1.1.7. I need to modify the data source which is automatically created by Jdeveloper.  Where is the data source file in jdev 11g.

Thanks,

Comments

User_AMB14

/**
* Load a set of loot items into loot table from a Comma Separated Value (CSV) file
* @param fileName expected CSV format: | String name | int tries |
* @throws NumberFormatException if 2nd column isn't an integer (extra space?)
* @throws FileNotFoundException if can't find the CSV file (path & extension?)
* @throws IOException other I/O & storage problems
*/
public void load(String fileName){
try {
BufferedReader fileReader = new BufferedReader(new FileReader(fileName));
String lineItem;

  while ((lineItem = fileReader.readLine()) != null) {  
    String\[\] lootDetails = lineItem.split(",");  

    lootRecord record = new lootRecord();  
    record.name       = lootDetails\[0\];  
    record.tries      = Integer.valueOf(lootDetails\[1\]);  
    record.dropChance = calcDropChance(record.tries);  

    table.add(record);  
  }  
  fileReader.close();  
}  
catch (NumberFormatException e) {  
  System.out.println("Invalid String: Integer count of tries expected");  
  e.printStackTrace();  
}  
catch (FileNotFoundException e) {  
  e.printStackTrace();  
}  
catch (IOException e) {  
  e.printStackTrace();  
}  

} // load

1 - 1
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Sep 24 2014
Added on Aug 26 2014
10 comments
2,482 views