【例子介绍】URL的三种获取内容的方式 java
1 调用getContent()方法直接读取内容 2 调用openStream()方法直接读取内容 3 通过URLConnection读取内容
【相关图片】
【源码结构】
文件清单
└── URL
├── URL1_openStream
│ ├── build
│ │ ├── classes
│ │ │ └── url1_openstream
│ │ │ └── openStream.class
│ │ └── empty
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── private
│ │ │ ├── private.properties
│ │ │ └── private.xml
│ │ ├── project.properties
│ │ └── project.xml
│ ├── src
│ │ └── url1_openstream
│ │ └── openStream.java
│ └── test
├── URL2_Connection
│ ├── build
│ │ └── classes
│ │ └── url2_connection
│ │ └── Connection.class
│ ├── build.xml
│ ├── manifest.mf
│ ├── nbproject
│ │ ├── build-impl.xml
│ │ ├── genfiles.properties
│ │ ├── private
│ │ │ ├── private.properties
│ │ │ └── private.xml
│ │ ├── project.properties
│ │ └── project.xml
│ ├── src
│ │ └── url2_connection
│ │ └── Connection.java
│ └── test
└── URL3_getContent
├── build
│ └── classes
│ └── url3_getcontent
│ └── getContent.class
├── build.xml
├── manifest.mf
├── nbproject
│ ├── build-impl.xml
│ ├── genfiles.properties
│ ├── private
│ │ ├── private.properties
│ │ └── private.xml
│ ├── project.properties
│ └── project.xml
├── src
│ └── url3_getcontent
│ └── getContent.java
└── test
29 directories, 30 files
评论