• hw1 problem1


    hw1 problem1

    用inputline替代X用了String里的replace()method;后来看陈同学的code发现可以用"+inputline+" 直接替代啊,之前都不造。还有URL好多method都不太明白什么意思,有好的学习API的方法吗,求分享。

    code:

    class OpenCommercial {

      /** Prompts the user for the name X of a company (a single string), opens

       *  the Web site corresponding to www.X.com, and prints the first five lines

       *  of the Web page in reverse order.

       *  @param arg is not used.

       *  @exception Exception thrown if there are any problems parsing the 

       *             user's input or opening the connection.

       */

      public static void main(String[] arg) throws Exception {

        BufferedReader keyboard;

        String inputLine;

        keyboard = new BufferedReader(new InputStreamReader(System.in));

        System.out.print("Please enter the name of a company (without spaces): ");

        System.out.flush();        /* Make sure the line is printed immediately. */

        inputLine = keyboard.readLine();

        String originalWibeSite="http://www.x.com/";

        String newWibeSite=originalWibeSite.replaceAll("x",inputLine);//replace x with inputline

        URL x=new URL(newWibeSite);

        InputStream ins=x.openStream();

        InputStreamReader isr=new InputStreamReader(ins);

        BufferedReader bfr=new BufferedReader(isr);

        String lines[]=new String[5];

      int i=0;

      while(i<5){

      lines[i]=bfr.readLine();

      i++;}

      int j=4;

      while(j>=0){

      System.out.println(lines[j]);  

      j--;

      }

       

        /* Replace this comment with your solution.  */

     

      }

     

      

    }

    output: 

    Please enter the name of a company (without spaces): moldirkorea

    </script>

    //-->

    location.href = "./kr/";

    <!--

    <script type="text/javascript">

  • 相关阅读:
    模仿企业在宣传中的动画效果页面
    模仿头条导航的左右滚动效果
    Ubuntu 1210怎么获得root权限登录
    Linux嵌入式 -- 内核简介(x86)
    linux ioctl()函数
    BUTTON标签和INPUT标签的区别【转】
    如何删除列表中的空格
    python第一模块数据类型
    python第一模块基础语法
    最短路 dijkstra+优先队列+邻接表
  • 原文地址:https://www.cnblogs.com/Jingjunw/p/7182457.html
Copyright © 2020-2023  润新知