- 浏览: 58809 次
- 性别:
- 来自: 深圳
文章分类
最新评论
-
liumingtong:
我想要你的联系方式.可以吗?要不你加我Q 3813774
success -
抛出异常的爱:
congdepeng 写道Liskov替换原则(LSP)
描 ...
设计原则 -
wumingshi:
楼主关于LSP的解释是错误的。LSP的精髓是,使用父类的代码可 ...
设计原则 -
liumingtong:
struts2的OGNL表达式
struts2的值栈
st ...
总结struts2 完成中······ -
Cindy_Lee:
Joy.zhang 写道
下面是具体的设计模式:
单例 ...
设计模式中11种
本文介绍利用jsp读取远程文件保存到本地的文章专题。
用jsp,读远程文件,保存到本地
读取网络文件有些不一样,我给你一个完整的代码吧,存成jsp就可以直接运行的。
<%@ page import="java.io.*"%>
<%@ page import="java.net.*"%>
<%@ page import="java.util.Properties"%>
<%
//?程文件路径
String s1 = "http://www.google.co.jp";
//本地存放路径
String s2 = "C:\\test.html";
URL urlfile = null;
HttpURLConnection httpUrl = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
File f = new File(s2);
//make proxy
String proxy = "192.168.224.12";
String port = "8080";
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost",proxy);
systemProperties.setProperty("http.proxyPort",port);
try{
//?接指定的网??源,?取网??入流
urlfile = new URL(s1);
httpUrl = (HttpURLConnection)urlfile.openConnection();
httpUrl.connect();
bis = new BufferedInputStream(httpUrl.getInputStream());
}catch(Exception e){
System.out.println(e.toString());
}
try{
bos = new BufferedOutputStream(new FileOutputStream(f));;
byte[] b = new byte[1024];
while(bis.read(b)!=-1) {
bos.write(b);
}?
}catch(Exception e){
System.out.println(e.toString());?
}finally{
try{
bos.flush();
bis.close();
httpUrl.disconnect();
}catch(Exception e){
System.out.println(e.toString());?
}
}
?
%>
<center>
<form name="search" action="results.jsp" method="get">
<p>
<input name="query" size="44"/> Search Criteria
</p>
<p>
<input name="maxresults" size="4" value="100"/> Results Per Page
<input type="submit" value="Search"/>
</p>
??????? </form>
</center>
其中
//make proxy
String proxy = "192.168.224.12";//防火墙地址
String port = "8080"; //防火墙端口
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost",proxy);
systemProperties.setProperty("http.proxyPort",port);
这一段是如果你的机器设定了防火墙,需要加上,如果是直接连上网,就不用。
用jsp,读远程文件,保存到本地
读取网络文件有些不一样,我给你一个完整的代码吧,存成jsp就可以直接运行的。
<%@ page import="java.io.*"%>
<%@ page import="java.net.*"%>
<%@ page import="java.util.Properties"%>
<%
//?程文件路径
String s1 = "http://www.google.co.jp";
//本地存放路径
String s2 = "C:\\test.html";
URL urlfile = null;
HttpURLConnection httpUrl = null;
BufferedInputStream bis = null;
BufferedOutputStream bos = null;
File f = new File(s2);
//make proxy
String proxy = "192.168.224.12";
String port = "8080";
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost",proxy);
systemProperties.setProperty("http.proxyPort",port);
try{
//?接指定的网??源,?取网??入流
urlfile = new URL(s1);
httpUrl = (HttpURLConnection)urlfile.openConnection();
httpUrl.connect();
bis = new BufferedInputStream(httpUrl.getInputStream());
}catch(Exception e){
System.out.println(e.toString());
}
try{
bos = new BufferedOutputStream(new FileOutputStream(f));;
byte[] b = new byte[1024];
while(bis.read(b)!=-1) {
bos.write(b);
}?
}catch(Exception e){
System.out.println(e.toString());?
}finally{
try{
bos.flush();
bis.close();
httpUrl.disconnect();
}catch(Exception e){
System.out.println(e.toString());?
}
}
?
%>
<center>
<form name="search" action="results.jsp" method="get">
<p>
<input name="query" size="44"/> Search Criteria
</p>
<p>
<input name="maxresults" size="4" value="100"/> Results Per Page
<input type="submit" value="Search"/>
</p>
??????? </form>
</center>
其中
//make proxy
String proxy = "192.168.224.12";//防火墙地址
String port = "8080"; //防火墙端口
Properties systemProperties = System.getProperties();
systemProperties.setProperty("http.proxyHost",proxy);
systemProperties.setProperty("http.proxyPort",port);
这一段是如果你的机器设定了防火墙,需要加上,如果是直接连上网,就不用。
评论
2 楼
zhao103804
2010-07-16
http://www.google.co.jp
那个URL改成url=“http://www.google.co.jp”
savepath=“C:\\test.html”
zhao103804 写道
我怎么感觉你写的太麻烦点了吧,直接抓取那个页面不就行了吗?
public static void main(String[] args) {
String url = "http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx/getRegionProvince";
url="http://vip.ibook8.com/2008/8/thinkingjava4th.rar";
String savepath = "f:\\thinkingjava4th.txt";
getAndSave(url,savepath);
}
public static void getAndSave(String url,String path) {
InputStream inputStream = null;
try {
URL surl = new URL(url);
URLConnection uc = surl.openConnection();
uc.connect();
inputStream = uc.getInputStream();
FileOutputStream fos=new FileOutputStream(path);
byte[] b = new byte[1024];
int len = 0;
while ((len = inputStream.read(b)) > 0) {
fos.write(b, 0, len);
}
inputStream.close();
fos.flush();
fos.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String url = "http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx/getRegionProvince";
url="http://vip.ibook8.com/2008/8/thinkingjava4th.rar";
String savepath = "f:\\thinkingjava4th.txt";
getAndSave(url,savepath);
}
public static void getAndSave(String url,String path) {
InputStream inputStream = null;
try {
URL surl = new URL(url);
URLConnection uc = surl.openConnection();
uc.connect();
inputStream = uc.getInputStream();
FileOutputStream fos=new FileOutputStream(path);
byte[] b = new byte[1024];
int len = 0;
while ((len = inputStream.read(b)) > 0) {
fos.write(b, 0, len);
}
inputStream.close();
fos.flush();
fos.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
那个URL改成url=“http://www.google.co.jp”
savepath=“C:\\test.html”
1 楼
zhao103804
2010-07-16
我怎么感觉你写的太麻烦点了吧,直接抓取那个页面不就行了吗?
public static void main(String[] args) {
String url = "http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx/getRegionProvince";
url="http://vip.ibook8.com/2008/8/thinkingjava4th.rar";
String savepath = "f:\\thinkingjava4th.txt";
getAndSave(url,savepath);
}
public static void getAndSave(String url,String path) {
InputStream inputStream = null;
try {
URL surl = new URL(url);
URLConnection uc = surl.openConnection();
uc.connect();
inputStream = uc.getInputStream();
FileOutputStream fos=new FileOutputStream(path);
byte[] b = new byte[1024];
int len = 0;
while ((len = inputStream.read(b)) > 0) {
fos.write(b, 0, len);
}
inputStream.close();
fos.flush();
fos.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
public static void main(String[] args) {
String url = "http://webservice.webxml.com.cn/WebServices/WeatherWS.asmx/getRegionProvince";
url="http://vip.ibook8.com/2008/8/thinkingjava4th.rar";
String savepath = "f:\\thinkingjava4th.txt";
getAndSave(url,savepath);
}
public static void getAndSave(String url,String path) {
InputStream inputStream = null;
try {
URL surl = new URL(url);
URLConnection uc = surl.openConnection();
uc.connect();
inputStream = uc.getInputStream();
FileOutputStream fos=new FileOutputStream(path);
byte[] b = new byte[1024];
int len = 0;
while ((len = inputStream.read(b)) > 0) {
fos.write(b, 0, len);
}
inputStream.close();
fos.flush();
fos.close();
} catch (MalformedURLException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
}
发表评论
-
jsp+tomcat+mysql&sevlet&javabean配置
2010-07-14 18:01 677在配置jsp开发环境的过 ... -
JSP中用bean封装常用的功能
2010-07-14 18:00 710本文介绍JSP中用bean封装常用的功能的文章专题。 1、建 ... -
JSP中关于html的转换技巧
2010-07-14 17:59 609本文介绍JSP中关于html的转换技巧的文章专题。 publ ... -
在JSP中设置HTTP应答头
2010-07-14 17:58 766本文介绍在JSP中设置HTTP应答头的文章专题。 Prime ... -
在JSP中访问CORBA服务对象实例
2010-07-14 17:58 801结合J2EE和CORBA可以充分 ... -
学习jsp与javascript结合在页面间传递参数
2010-07-14 17:57 1282本文介绍学习jsp与javascript结合在页面间传递参数的 ... -
JSP Commons FileUpload 组件上传文件的总结
2010-07-14 17:57 907本文介绍JSP Commons FileUpload 组件上传 ... -
JSP开发前设置
2010-07-14 17:56 681由于朋友问起我开发JSP前都要做些什么,就写了这篇东东。 ? ... -
JSP应用语法详解集三
2010-07-14 17:56 730本文介绍JSP应用语法详 ... -
JSP应用语法详解集二
2010-07-14 17:55 676本文介绍JSP应用语法详解集二的文章专题。 8)标签: 转发 ... -
JSP应用语法详解集一
2010-07-14 17:55 597本文介绍JSP应用语法详解:HTML注释,隐藏注释,Page指 ... -
提升JSP应用程序的7大绝招
2010-07-14 17:54 728本文的目的是通过对servlet和JSP的一些调优技术来极大地 ... -
JSP技巧之:session在何时被创建
2010-07-14 17:54 642本文介绍JSP技巧之:session在何时被创建的文章专题。 ... -
谈谈JSP的九个隐含对象
2010-07-14 17:53 875本文介绍谈谈JSP的九个隐含对象的文章专题,例如:储存和取得属 ... -
解决JSP与MySQL交互的中文乱码问题
2010-07-14 17:51 668首先实现了一个StringConvert bean(GBtoI ... -
JSP几个常见问题
2010-07-14 17:51 696本文介绍JSP几个常见问题的文章专题,Hashtable和 H ... -
JSp的Taglib Directiv语法,属性概述
2010-07-14 17:50 747指示(directive)允许您使用自定义的标签,为标签库命名 ... -
JSP连接SQL Server 2000系统详细配置
2010-07-14 17:50 592到SUN官方站点(http://java.sun.com)下载 ... -
JSP中标签库的深入研究
2010-07-14 17:50 634标签处理器和标签附加信息需要定位在JSP容器类载入器可以找到的 ... -
JSP中基于Session的在线用户统计分析
2010-07-14 17:49 747JSP作为后起之秀能够在 ...
相关推荐
- **存储数据**:将提取到的数据保存到本地文件或数据库中。 - **异常处理**:对可能出现的网络错误、解析错误等进行处理,确保程序的健壮性。 4. **JSP小偷程序的风险与伦理问题** 虽然JSP小偷程序在某些场景下...
- 如果需要将摄像头捕获的图像保存到服务器,可以使用FileReader API读取图像数据,通过Ajax发送到后端,后端使用Java处理并存储图片。 5. **安全和权限问题** - 调用摄像头前必须获得用户许可,否则会被浏览器...
4. **文件存储与检索**:保存的音频文件应有一个合理的存储策略,如存储在服务器的本地文件系统、云存储服务(如AWS S3或阿里云OSS)。为了方便后续的播放,每个文件需要关联一个唯一的标识符,可以通过数据库记录...
9. **Web应用部署**:了解如何将打包好的WAR文件部署到服务器,如在本地或远程服务器上配置Tomcat,并设置数据库连接。 通过这个项目,开发者可以深入理解Web应用开发流程,熟悉Java Web技术栈,提升数据库管理和...
然后,可以使用Java的`javax.imageio.ImageIO`类将字节数组保存为本地文件或上传至云存储服务。以下是一个简化的Servlet处理逻辑: ```java import javax.imageio.ImageIO; import javax.servlet.ServletException;...
- 实现文件上传逻辑,包括读取文件、保存文件等操作。 - 在上传过程中,可以通过监听器或自定义逻辑来计算上传进度,并通过DWR返回给前端。 5. **前端进度条展示**: - 使用JavaScript和CSS创建一个进度条组件,...
6. **录像功能**:项目可能使用JavaCV库来捕获视频流,并将其保存为本地文件。FFmpeg可以在此过程中帮助进行编码和格式转换,确保录像文件的质量和兼容性。 7. **WebSocket**:这是一种在TCP连接上建立的全双工通信...
3. **文件系统接口**:为了与本地或远程文件系统交互,需要设计一套文件操作接口。这包括读取、写入、创建、删除、重命名文件等方法。可以使用Java的`java.io`和`java.nio`包来实现这些功能。 4. **用户认证与授权*...
- **创建Workbook对象**:这是读取Excel文件的基础,可以通过FileInputStream从本地文件或输入流创建Workbook对象。 ```java import jxl.*; try { FileInputStream fis = new FileInputStream("sourcefile.xls"); ...
另外新增印章管理控件,可在浏览器中创建,修改印章从保存到本地或者服务器。 4 新增压缩存储和传输功能 V2.5.1版本新增的压缩存储和传输功能,使的20K左右的Word文档压缩后只有2K左右。极大节约了数据库或磁盘空间...
CHK:由Windows磁盘碎片整理器或磁盘扫描保存的文件碎片 CHM:编译过的HTML文件 CHP:Ventura Publisher章节文件 CHR:字符集(字体文件) CHT:ChartViem文件;Harvard Graphics矢量文件 CIF:Adaptec CD 创建...
摘要:Java源码,算法相关,密钥 Java生成密钥、保存密钥的实例源码,通过本源码可以了解到Java如何产生单钥加密的密钥(myKey)、产生双钥的密钥对(keyPair)、如何保存公钥的字节数组、保存私钥到文件privateKey.dat、...
3. **参数配置**:使用 `<param>` 标签指定文件保存目录。 示例代码如下: ```xml <!DOCTYPE struts PUBLIC "-//Apache Software Foundation//DTD Struts Configuration 2.0//EN" ...
文件API允许JavaScript在客户端处理文件,包括读取、转换和发送到服务器。服务器端接收到文件后,会保存到指定的存储位置。 7. **Tomcat**: Tomcat作为Java应用服务器,负责处理HTTP请求,执行Java Servlet和JSP...
动态INCLUDE用jsp:include动作实现 <jsp:include page="included.jsp" flush="true" />它总是会检查所含文件中的变化,适合用于包含动态页面,并且可以带参数。 静态INCLUDE用include伪码实现,定不会检查所含文件...
- **直接调用其他EJB**:应通过本地或远程接口。 #### 27. Java虚拟机中的另一种类型 - **引用类型**:如对象引用、数组等。 #### 28. 创建对象的其他方式 - **反射**:使用Class类的newInstance()方法。 - **...
- **作用**: 确定如何获取Action实例,无论是在本地还是远程。 - **ActionInvocation**: - **功能**: 使用命令模式执行Action,负责拦截器的调用。 - **实现**: 通过继承`Invocation`接口实现对Action的调用逻辑...