如何用java提取txt中所有冒号后面的内容 并且把提取出来的内容赋值给变量与实例进行对比

(txt文件很大内容比较多,这里只是举例)把冒号后面的内容提取出来并且赋值给变量与本身存在的实例进行字符对比如果完全相同则输出true并输出在另外一个文件中万分感谢啦!!... (txt文件很大 内容比较多,这里只是举例)把冒号后面的内容提取出来 并且赋值给变量 与本身存在的实例进行字符对比 如果 完全相同 则输出true并输出在另外一个文件中 万分感谢啦 !!!! 展开
 我来答
小傻

2015-08-12 · 知道合伙人软件行家
小傻
知道合伙人软件行家
采纳数:11567 获赞数:31134
已经做过两个上架的app和两个网页项目.

向TA提问 私信TA
展开全部

    提取txt冒号后面内容可以使用string的split方法,截取后面即可,关于内容与变量进行比较可以使用equal方法,示例如下:

public calss ceshi{
   public static void main(String[] args){
      Scanner input = new Scanner(new File("filepath"));//filepath写你的txt路径
      PrintWriter output = new PrintWriter(new File("output.txt"));
      while(input.hasNextLine())
      {
         String[] temp = input.nextLine().split(";");//这里必须保证每行都存在冒号,否则需要加一个判断条件
         output.write(temp[1]);
       }
      output.close;
      ceshi ce = new ceshi():
      temp.equal(ce);//进行比较
}

}
东涛浪尽
2014-05-07 · 超过20用户采纳过TA的回答
知道答主
回答量:129
采纳率:0%
帮助的人:53.8万
展开全部
用reader 的readerline方法读取再用string的lastindex方法获取:的位置用substring截取其他的简单了用if判断等
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
田桖兰VQ
2014-05-07 · TA获得超过591个赞
知道答主
回答量:45
采纳率:100%
帮助的人:53.1万
展开全部
public class ReadTxt {
public static void main(String[] args) {
/*writer("hello:6666");
writer("hi:8888");*/
String str = "8888";//模拟自身存在的字符
read(new File("hello.txt"),str);
}
//写文件
public static void writer(File file,String str){
if(!file.exists()){
try {
file.createNewFile();
} catch (IOException e) {
e.printStackTrace();
}
}
OutputStream os= null;
BufferedOutputStream bos = null;
PrintWriter out = null;
try {
os = new FileOutputStream(file,true);
bos = new BufferedOutputStream(os);
out = new PrintWriter(bos,true);
out.println(str);
} catch (FileNotFoundException e) {
e.printStackTrace();
} finally{
out.close();
}
}
//读文件
public static void read(File file,String str){
List<String> list = new ArrayList<String>();//用于存放取出来数据(冒号后面的数字)
if(!file.exists()){
return;
}
InputStream is = null;
Reader reader = null;
BufferedReader br = null;
try {
is = new FileInputStream(file);
reader = new InputStreamReader(is);
br = new BufferedReader(reader);
String s = null;
while((s=br.readLine())!=null){
s = s.substring(s.indexOf(":")+1);
list.add(s);
if(s.equals(str)){
System.out.println(true);
writer(new File("hi.txt"), str);
}
}
} catch (FileNotFoundException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}finally{
try {
br.close();
} catch (IOException e) {
e.printStackTrace();
}
}
}
}
测试是ok的
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
Cry_小衰
2014-05-07 · TA获得超过219个赞
知道小有建树答主
回答量:172
采纳率:0%
帮助的人:137万
展开全部
File file=new File("读文件路径+文件名和后缀");
File file2=new FIle("写路径+文件名和后缀");
BufferedReader br=null;
BufferedWriter bw=null;
String mes=null;
try{
file2.createNewFIle();
br=new BufferedReader(new FileReader(file));
bw=new BufferedWriter(new FileWriter(file2));
while((mes=br.readline())!=null)
{
mes=mes.split(":")[1];
............判断的代码 你所说的和本身的实例是否相等
if(相等){
System.out.println("true”);
bw.write(mes,0,mes.length());
bw.flush();
}
}
}
catch(Exception e)
{
}
本回答被网友采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式