2016年3月28日

JasperReports教程:Report Data Sources

摘要: 1.public boolean next() throws JRException; 尝试将光标定位到数据源的下一个位置 2.public Object getFieldValue(JRField jrField) throws JRException; 此方法提供了从当前数据源记录中获取报表的每 阅读全文

posted @ 2016-03-28 16:00 低调点 阅读(3872) 评论(0) 推荐(0) 编辑

2015年8月24日

Ubuntu14.02.2下安装JDK并配置Jetty服务器

摘要: 首先第一步先取得JDK的安装文件,由于我的系统是64位的,所以安装包是jdk-7u80-linux-x64.gz上传到unbuntu服务器下执行tar -xvfjdk-7u80-linux-x64.gz,解压到当前目录tar -xvf jdk-7u80-linux-x64.gz然后我们把该目录移动到... 阅读全文

posted @ 2015-08-24 15:19 低调点 阅读(1277) 评论(0) 推荐(0) 编辑

2014年5月31日

Android增加v7 appcompat源码

摘要: 1.File ---- Import---- Existing Android Code Into Workspace2.选择/extras/android/support/v7/appcompat/导入进来3.去github上查找,“platform framework support”,下载下来... 阅读全文

posted @ 2014-05-31 15:53 低调点 阅读(690) 评论(0) 推荐(0) 编辑

2014年1月2日

mac svn 终端操作命令

摘要: svn 删除目录命令svn 提交命令svn commit -m zenggui出来要提交的目录后,按shift + : + q如遇到不明白的可以输入:svn help比如想查询删除命令的使用:svn help delete 阅读全文

posted @ 2014-01-02 10:02 低调点 阅读(128) 评论(0) 推荐(0) 编辑

2013年5月16日

spring rest 接收json数据

摘要: 1 @RequestMapping("/appservices/appinfo") 2 @Controller 3 public class AppInfoWebService { 4 5 @RequestMapping(value = "/get", method = RequestMethod.POST) 6 @ResponseBody 7 public AccountBean show(@RequestBody String appId) { 8 System.out.println(appId); 9 10 O... 阅读全文

posted @ 2013-05-16 15:28 低调点 阅读(892) 评论(0) 推荐(0) 编辑

2013年3月26日

Tomcat6使用Struts2无故报404错误解决方案

摘要: 错误信息:The Apache Tomcat Native library which allows optimal performance in production environments was not found on the java.library.path: E:\_PortableJava\JDK1.6.0\bin;.;D:\WINDOWS\Sun\Java\bin;D:\WINDOWS\system32;D:\WINDOWS;解决办法:下载tcnative-1.dll并复制到Windows/system32下 重启TOMCAT6:http://apache.freelamp 阅读全文

posted @ 2013-03-26 10:35 低调点 阅读(406) 评论(0) 推荐(0) 编辑

2011年8月12日

调用系统相应APP汇总

摘要: 打开mp3播放器播放音乐Intent it = new Intent(Intent.ACTION_VIEW);Uri uri = Uri.parse("file:///sdcard/song.mp3");it.setDataAndType(uri, "audio/mp3");startActivity(it);Intent it = new Intent(Intent.ACTION_VIEW);Uri uri = Uri.parse("file:///sdcard/song.mp3");it.setDataAndType(uri, & 阅读全文

posted @ 2011-08-12 12:05 低调点 阅读(206) 评论(0) 推荐(0) 编辑

导航