黑马程序员技术交流社区

标题: 帮忙看看什么问题。 [打印本页]

作者: 杨芳    时间: 2013-2-2 13:57
标题: 帮忙看看什么问题。
本帖最后由 张向辉 于 2013-2-3 12:16 编辑

import java.io.IOException;
import java.io.InputStream;


public class Dataoutput {

        /**
         * @param args
         * @throws IOException
         */
        public static void main(String[] args) throws IOException {
                // TODO Auto-generated method stub

                InputStream in=System.in;

               
                StringBuilder sb=new StringBuilder();
                while(true)
                {
                        int ch=in.read();

                        sb.append((char)ch);
                        if(ch=='\r')
                        continue;
                        if(ch=='\n')
                        {
                                
                                String s=sb.toString();
                                if("over".equals(s))
                                        break;
                        
                                else if ("18".equals(s))
                                {
                                System.out.println("2013年4月20号");
                                sb.delete(0,sb.length());
                                }
                                else if("19".equals(s))
                                {
                                 System.out.println("2013年5月20号");
                                 sb.delete(0,sb.length());
                                }
                                else
                                {
                                 System.out.println("期号不存在");
                                 sb.delete(0,sb.length());
                                }
                        }
                        
                }
                in.close();
        }

        }


结果不对,帮忙修改一下,谢谢!!!
作者: 张庚    时间: 2013-2-2 14:11
*/
    public static void main(String[] args) throws IOException {
            // TODO Auto-generated method stub

            InputStream in=System.in;

            
            StringBuilder sb=new StringBuilder();
            
            while(true)
            {
                    int ch=in.read();
      
                    sb.append((char)ch);
                    if(ch=='\r')
                    continue;
                    if(ch=='\n')
                    {
                           
                            String s=sb.toString().trim();
                            System.out.println(sb+"_____");
                            if("over".equals(s))
                                    break;
                    
                            else if ("18".equals(s))
                            {
                            System.out.println("2013年4月20号");
                            sb.delete(0,sb.length());
                            }
                            else if("19".equals(s))
                            {
                             System.out.println("2013年5月20号");
                             sb.delete(0,sb.length());
                            }
                            else
                            {
                             System.out.println("期号不存在");
                             sb.delete(0,sb.length());
                            }
                    }
                    
            }
            in.close();
    }


可以了
    String s=sb.toString().trim();  这里要去除左右空格
作者: 杨芳    时间: 2013-2-2 14:22
张庚 发表于 2013-2-2 14:11
*/
    public static void main(String[] args) throws IOException {
            // TODO Auto-generat ...

兄弟,谢谢!!




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2