java怎么从一个文件读取字符串,再存到一个字符串数组里?

java怎么从一个文件读取字符串,再存到一个字符串数组里?,第1张

首先,可以直接写入string的,这段程序的这种写法很无聊,让你误解了。\x0d\x0a如:out.write(p_send_text)\x0d\x0a\x0d\x0a其次,如果想写入一行并且换行的话,那么得包装一个printwriter,如:\x0d\x0aPrintWriterout=newPrintWriter(FileWriter(file,true))\x0d\x0aout.println(p_send_text)\x0d\x0a\x0d\x0a在Java里,\x0d\x0achar表示一个字符它可以直接转换为int,byte,long.(ascii/unicode码)\x0d\x0aString表示一串字符,它可以通过某些方法转换成一个数组,如char[],byte[],也可以用其他方法取出其中某个特定位置的字符,如charAt()\x0d\x0a\x0d\x0a与C里面不同,在Java中,通常String用的比较多,char[]基本不用的。

java中可以使用Scanner来读取文件的内容,首先先通过File创建一个文件,再通过Scanner的nextLine()方法读取文本的内容。

具体代码如下所示:

public class Demo {

public static void main(String[] args) {

File file = new File("C:/Users/hp/Desktop/data.txt")

Scanner scanner = null

try {

scanner = new Scanner(file)

String str = null

while (scanner.hasNextLine()) {

str += scanner.nextLine() + "\r\n"

}

System.out.println(str)

} catch (Exception e) {

e.printStackTrace()

} finally {

if (scanner != null) {

scanner.close()

}

}

}

}

Scanner的主要功能是简化文本扫描,这个类最实用的地方表现在获取控制台输入。

/**

     * 以行为单位读取文件,常用于读面向行的格式化文件

     */

    public static void readFileByLines(String fileName) {

        File file = new File(fileName)

        BufferedReader reader = null

        try {

            System.out.println("以行为单位读取文件内容,一次读一整行:")

            reader = new BufferedReader(new FileReader(file))

            String tempString = null

            int line = 1

            // 一次读入一行,直到读入null为文件结束

            while ((tempString = reader.readLine()) != null) {

                // 显示行号

                System.out.println("line " + line + ": " + tempString)

                line++

            }

            reader.close()

        } catch (IOException e) {

            e.printStackTrace()

        } finally {

            if (reader != null) {

                try {

                    reader.close()

                } catch (IOException e1) {

                }

            }

        }

    }


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/tougao/11958017.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-20
下一篇 2023-05-20

发表评论

登录后才能评论

评论列表(0条)

保存