﻿<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/"><channel><title>BlogJava-随笔记录-最新评论</title><link>http://www.blogjava.net/netnova/CommentsRSS.aspx</link><description>Vincent's blog</description><language>zh-cn</language><pubDate>Thu, 03 Jun 2010 15:06:41 GMT</pubDate><lastBuildDate>Thu, 03 Jun 2010 15:06:41 GMT</lastBuildDate><generator>cnblogs</generator><item><title>re: FCKeditor 在 Java Web Application 里应用的简单方法</title><link>http://www.blogjava.net/netnova/archive/2009/10/13/147549.html#298081</link><dc:creator>星期五</dc:creator><author>星期五</author><pubDate>Tue, 13 Oct 2009 08:25:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2009/10/13/147549.html#298081</guid><description><![CDATA[路过 顶<img src ="http://www.blogjava.net/netnova/aggbug/298081.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">星期五</a> 2009-10-13 16:25 <a href="http://www.blogjava.net/netnova/archive/2009/10/13/147549.html#298081#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Servlet,JSP 动态生成excel文件并提示下载的简单方法</title><link>http://www.blogjava.net/netnova/archive/2009/07/28/146776.html#288737</link><dc:creator>yuwenfang</dc:creator><author>yuwenfang</author><pubDate>Tue, 28 Jul 2009 07:36:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2009/07/28/146776.html#288737</guid><description><![CDATA[能否把引的包都贴出来呢?呵呵..本人是菜鸟,没看明白!<img src ="http://www.blogjava.net/netnova/aggbug/288737.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">yuwenfang</a> 2009-07-28 15:36 <a href="http://www.blogjava.net/netnova/archive/2009/07/28/146776.html#288737#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Servlet,JSP 动态生成excel文件并提示下载的简单方法</title><link>http://www.blogjava.net/netnova/archive/2009/03/02/146776.html#257339</link><dc:creator>wangdong</dc:creator><author>wangdong</author><pubDate>Mon, 02 Mar 2009 06:36:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2009/03/02/146776.html#257339</guid><description><![CDATA[我怎么弄都是乱码呢！！！<br>&lt;%@ page contentType=&quot;application/vnd.ms-excel;charset=utf-8&quot;%&gt;<br>&lt;%@ page import=&quot;org.apache.poi.hssf.*,org.apache.poi.hssf.usermodel.*,java.io.*&quot; %&gt;<br>&lt;%<br>  response.setHeader(&quot;Pragma&quot;,&quot;no-cache&quot;);<br>  response.setHeader(&quot;Cache-Control&quot;,&quot;no-cache&quot;);<br>  response.setDateHeader(&quot;Expires&quot;,0);<br>  response.setContentType(&quot;application/vnd.ms-excel&quot;);<br>  response.setHeader(&quot;Content-disposition&quot;,&quot;attachment;filename=\&quot;test.xls\&quot;&quot;);//定义文件名 <br>  HSSFWorkbook wbb = new HSSFWorkbook();<br>  HSSFSheet sheet = wbb.createSheet();<br>  wbb.setSheetName(0, &quot;sheet&quot;);<br>  HSSFRow row = sheet.createRow(0);<br>  HSSFCell cell1 = row.createCell((short)0);<br>  cell1.setCellValue(&quot;test&quot;);<br>  HSSFCell cell2 = row.createCell((short)1);<br>  cell2.setCellValue(&quot;中文&quot;);<br>  OutputStream ops = response.getOutputStream();<br>  wbb.write(ops);<br>  ops.flush();<br>  ops.close();<br>%&gt;<img src ="http://www.blogjava.net/netnova/aggbug/257339.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">wangdong</a> 2009-03-02 14:36 <a href="http://www.blogjava.net/netnova/archive/2009/03/02/146776.html#257339#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>用ajax发送请求，怎么获取[未登录]</title><link>http://www.blogjava.net/netnova/archive/2008/11/19/146776.html#241480</link><dc:creator>小小</dc:creator><author>小小</author><pubDate>Wed, 19 Nov 2008 12:39:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/11/19/146776.html#241480</guid><description><![CDATA[用ajax发送请求，怎么获取<img src ="http://www.blogjava.net/netnova/aggbug/241480.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">小小</a> 2008-11-19 20:39 <a href="http://www.blogjava.net/netnova/archive/2008/11/19/146776.html#241480#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Servlet,JSP 动态生成excel文件并提示下载的简单方法</title><link>http://www.blogjava.net/netnova/archive/2008/10/25/146776.html#236498</link><dc:creator>网友</dc:creator><author>网友</author><pubDate>Fri, 24 Oct 2008 17:24:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/10/25/146776.html#236498</guid><description><![CDATA[  response.setContentType(&quot;application/vnd.ms-excel;charset=gbk&quot;);<br>我在我的servlet设置了这个，为什么我弹出的保存窗口，的文件名是乱码？？？<img src ="http://www.blogjava.net/netnova/aggbug/236498.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">网友</a> 2008-10-25 01:24 <a href="http://www.blogjava.net/netnova/archive/2008/10/25/146776.html#236498#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Servlet,JSP 动态生成excel文件并提示下载的简单方法</title><link>http://www.blogjava.net/netnova/archive/2008/07/16/146776.html#215333</link><dc:creator>易发布</dc:creator><author>易发布</author><pubDate>Wed, 16 Jul 2008 14:20:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/07/16/146776.html#215333</guid><description><![CDATA[易发布分类信息网 <a href="http://www.yifabu.cn" target="_new" rel="nofollow">http://www.yifabu.cn</a> 引领分类信息新时代 发布信息，展示产品，投放广告，我们为您想得更周到，交流群：56041092<br>收录情况：各大搜索引擎收录良好，百度每日更新快照，各个关键字表现良好，排名前列,内页链接 <a href="http://www.yifabu.cn" target="_new" rel="nofollow">http://www.yifabu.cn</a>/link/add.asp<img src ="http://www.blogjava.net/netnova/aggbug/215333.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">易发布</a> 2008-07-16 22:20 <a href="http://www.blogjava.net/netnova/archive/2008/07/16/146776.html#215333#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>补充</title><link>http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204021</link><dc:creator>艳儿</dc:creator><author>艳儿</author><pubDate>Fri, 30 May 2008 02:05:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204021</guid><description><![CDATA[导出和打印功能都可以这样实现！<br>如果要动态编辑excel文件就用楼主的jxl吧！<img src ="http://www.blogjava.net/netnova/aggbug/204021.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">艳儿</a> 2008-05-30 10:05 <a href="http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204021#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Servlet,JSP 动态生成excel文件并提示下载的简单方法</title><link>http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204019</link><dc:creator>艳儿</dc:creator><author>艳儿</author><pubDate>Fri, 30 May 2008 02:03:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204019</guid><description><![CDATA[(*^__^*) 嘻嘻……，好像不用这么麻烦吧！<br>直接在jsp头部加一行，就ok了啊！o(∩_∩)o...哈哈！<br>word页面只要在jsp头设置如下指令：<br>&lt;%@page contentType=&quot;application/msword;charset=GBK&quot; %&gt;<br> <br>excel如下：<br>&lt;%@page contentType=&quot;application/vnd.ms-excel;charset=GBK&quot; %&gt;<br><br>其他内容直接输出就ok了！<br><a href="http://newyaner.blog.sohu.com/84170098.html" target="_new" rel="nofollow">http://newyaner.blog.sohu.com/84170098.html</a> <br><img src ="http://www.blogjava.net/netnova/aggbug/204019.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">艳儿</a> 2008-05-30 10:03 <a href="http://www.blogjava.net/netnova/archive/2008/05/30/146776.html#204019#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: Dom4j 简单读写XML文件的例子</title><link>http://www.blogjava.net/netnova/archive/2008/04/22/129142.html#194735</link><dc:creator>你好</dc:creator><author>你好</author><pubDate>Tue, 22 Apr 2008 03:58:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2008/04/22/129142.html#194735</guid><description><![CDATA[你们好!<br>我是一位初学者<br>我想问一下:<br>要用 java 读写 XML ,在 myeclipse  里边怎么操作?<br>具体的怎么 运行? 就是说要建一个简单的 Demo<br> <br>请加我QQ:719568923<br>谢谢!!!<img src ="http://www.blogjava.net/netnova/aggbug/194735.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">你好</a> 2008-04-22 11:58 <a href="http://www.blogjava.net/netnova/archive/2008/04/22/129142.html#194735#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>re: FCKeditor 在 Java Web Application 里应用的简单方法</title><link>http://www.blogjava.net/netnova/archive/2007/10/16/147549.html#153130</link><dc:creator>tristan</dc:creator><author>tristan</author><pubDate>Mon, 15 Oct 2007 16:15:00 GMT</pubDate><guid>http://www.blogjava.net/netnova/archive/2007/10/16/147549.html#153130</guid><description><![CDATA[两个字：谢谢。<img src ="http://www.blogjava.net/netnova/aggbug/153130.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.blogjava.net/netnova/" target="_blank">tristan</a> 2007-10-16 00:15 <a href="http://www.blogjava.net/netnova/archive/2007/10/16/147549.html#153130#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item></channel></rss>