毕业论文开发语言企业开发JAVA技术.NET技术WEB开发Linux/Unix数据库技术Windows平台移动平台嵌入式论文范文英语论文
您现在的位置: 毕业论文 >> java技术 >> 正文

eclipse怎样导入txt文件

更新时间:2013-4-4:  来源:毕业论文

eclipse怎样导入txt文件
//下面是代码
import java.io.*;
import java.util.*;
public class Decrypts {

public static void main (String [] args) {
Scanner keyboard = new Scanner (System.in);
String fileName = new String ("Lab6-2.txt");
try {

FileReader in = new FileReader (fileName);
char[] inText = new char[5000];

int length = in.read(inText);
                        System.out.println ("Enter the encryption key: " + length);
int key = keyboard.nextInt();

int pass = 1;
int index = 0;
int newIndex = 0;
char [] decryptedText = new char[length];


while (pass <= key) {
while  (newIndex < length) {
         decryptedText[newIndex] = inText[index];
         index ++;
         newIndex = newIndex + key; 
}
    newIndex = pass;
    pass ++;
}
                        String text = new String (decryptedText);
System.out.println ("The new text is : " + text);

in.close();
}
catch (FileNotFoundException e) {
System.out.println ("Could not open file...." + fileName + " exiting" );
System.exit(0);
}
catch (IOException e) {
System.out.println ("Could not open file...." + fileName + " exiting" );
System.exit(0);
}毕业论文 

}
}

/*那个文件里面是这些字: Ntel  oihyoh lmc de!wef eot  !  ognmhop!itro eefasi ot   r madotatt    ,我是直接把文件拽到包里面的(就是Decrypts这个class的下面,在eclipse里面可以打开,但是一运行这个程序就显示打不开文件)!!菜鸟一名,求救啊~~

这样不写路径,默认是去根目录下去找的,不是包里面 如果不改代码的情况下,文件需要和class文件放在同一目录。

设为首页 | 联系站长 | 友情链接 | 网站地图 |

copyright©youerw.com 优尔论文网 严禁转载
如果本毕业论文网损害了您的利益或者侵犯了您的权利,请及时联系,我们一定会及时改正。