0

如何在 java 中处理多行 textarea 字符串。这里是我的字符串示例:

eg 1:
!1234   //here after !1234 there is some white space
ADFGKLJUYGHH
eg 2:
!123455//here after!1234555 there  is no space
ASDFGERTYUJDCVBNMFGH

我知道在从文件读取时如何处理这些字符串,但现在我已经从 JTextArea 读取并为这些读取的字符串执行了一些功能。(这里我们应该只考虑字符串的第二行,第一行应该被忽略)

怎么做?

从文件或控制台读取的代码是:

line=br.readLine();
    while (line!=null) 
                            {
                                if (line.length() != 0 && line.charAt(0) == '>') 
                                {
                                    String name = line.trim();
                                    System.out.println(name);   

                                    StringBuffer sb = new StringBuffer();
                                    line = br.readLine();
                                    while(line!=null &&line.length()==0)
                                    {
                                        line = br.readLine();
                                    }
                                    while (line!=null &&line.charAt(0) != '>') 
                                    {
                                        sb.append(line);
                                        if (line!=null) 
                                        {
                                            line = br.readLine();
                                        } 
                                        else 
                                        {
                                            break;
                                        }
                                    }
                                    String ss = sb.toString();

                                    operation(seq,name,fnew,num);
                                } 
                                else 
                                {
                                    line = br.readLine();

                                }
                            }
                    //      br.close();
                        //  bufferFileWriter.close();
                    } 
4

2 回答 2

0

示例代码是我的问题

JTextArea txtarea=new JTextArea(5,30);                    
    String str=txtarea.getText();
                        String[] temp;
                        String delimiter = "\\n";
                        temp = str.split(delimiter);
                      for(int i =0; i < temp.length ; i++)
                        System.out.println(temp[i]);
于 2013-09-14T20:02:11.790 回答
0

这将拆分大多数新行

String lines[] = theString.split("\\r?\\n|\\r);

但是,这应该足够了

String lines[] = theString.split("\\n");
于 2013-09-14T14:12:47.287 回答