Advertisement
Guest User

Untitled

a guest
Aug 27th, 2014
212
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.52 KB | None | 0 0
  1. package tick;
  2.  
  3. import java.io.IOException;
  4.  
  5. public class MainClass {
  6.  
  7.     public static void main(String[] args) {
  8.         final MainClass thisClass = new MainClass();   
  9.         thisClass.readFileData();
  10.         final Frame THIS_FRAME = new Frame();
  11.         THIS_FRAME.setVisible(true);
  12.     }
  13.  
  14.    
  15.     private void readFileData() {
  16.         try {  // Start reading txt DATA
  17.             FileReader.readDataFromTxtFile();
  18.         } catch (IOException e) {
  19.             System.out
  20.                     .println(".............ERROR READING DATA FROM TXT FILE.....");
  21.             e.printStackTrace();
  22.         }
  23.     }
  24.  
  25. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement