从文本文件一次读取一个单词

从文本文件一次读取一个单词

本文介绍了从文本文件一次读取一个单词的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我如何一次从一个文本文件中读取一个单词,该单词之间用空格隔开.指针也应随之移动.我的意思是我不想在阅读一行后使用String.split方法.我想阅读单词并将单词插入文件中的特定位置.

How do i read one word at a time from a text file in which the words are separated by a white space. The pointer should also move along. I mean i dont want to use the String.split method after reading a line. I want to read words and insert a word at a particular position in the file. Is there a simple way to do this??

推荐答案



这篇关于从文本文件一次读取一个单词的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-28 08:47