上一页 1 ··· 95 96 97 98 99 100 101 102 103 ··· 300 下一页
2013年9月13日

Android解析Excel文档完整示例

摘要: MainActivity如下:package cc.testexcel;import java.io.File;import jxl.Cell;import jxl.CellType;import jxl.DateCell;import jxl.NumberCell;import jxl.Sheet;import jxl.Workbook;import android.os.Bundle;import android.os.Environment;import android.app.Activity;/** * Demo描述: * 利用jxl.jar解析Excel文档 * * 注意事项: . 阅读全文
posted @ 2013-09-13 21:24 you Richer 阅读(1475) 评论(0) 推荐(0)

Jquery progressbar通过Ajax请求获取后台进度演示

摘要: 项目源代码下载:http://download.csdn.net/detail/nuptboyzhb/62622531.简介本文主要演示Jquery progressbar的进度条功能。js通过ajax请求向后台实时获取当前的进度值。后台将进度值存储在cookie中,每次请求后,将进度条的值增2个。以此演示进度条的实时显示功能。2.前台index.jspjsp代码如下 --> "> My JSP 'index.jsp' starting page 3.struts.xml文件的配置 ... 阅读全文
posted @ 2013-09-13 21:22 you Richer 阅读(6018) 评论(0) 推荐(0)

Add custom and listview web part to a page in wiki page using powershell

摘要: As we know, Adding list view web part is different from custom web part using powershell, what's more, there are also difference between adding web part to web part zone page and wiki pag.here is the method.1. Add custom web part to wiki page:Note: because of custom web part, we couldn't new 阅读全文
posted @ 2013-09-13 21:19 you Richer 阅读(1002) 评论(0) 推荐(0)

highcharts dynamic change line color

摘要: mouseOut: function(){this.series.graph.attr({"stroke","#ccc"}) } 阅读全文
posted @ 2013-09-13 21:17 you Richer 阅读(236) 评论(0) 推荐(0)

织梦sitemap模板获取文章列表

摘要: 分析了一下makehtml_map.php?dopost=site这个文件,发现生成视图用的是dedetag.class.php文件,有点简单。不能使用织梦的很多标签,例如:{dede:arclisttitlelen=25row='25'}[field:title/]{/dede:arclist}就不能解析出列表。 现在仿照首页的方法,使用arc.partview.class.php,这是一个视图类,可以解析这些标签。 修改makehtml_map.php如下: 1、把 require_once(DEDEINC."/dedetag.class.php"); 阅读全文
posted @ 2013-09-13 21:14 you Richer 阅读(382) 评论(0) 推荐(0)

ORA-19815,ORA-19809 :limit exceeded for recovery files

摘要: 数据库重新启动的时候,收到了ORA-19815的错误。从错误的提示来看,是由于闪回区的空间被填满导致无法成功启动。这种情形我们通常考虑的是清除归档日志,那就直接在OS层面rm了,真的是这样吗?客官,如果你有相同的情形,接下往下看......1、故障现象idle> startupORACLE instance started.Total System Global Area 238530560 bytesFixed Size 1335724 bytesVariable Size 155192916 bytesDatabase Buffers 75497472 bytesRedo Buffe 阅读全文
posted @ 2013-09-13 21:12 you Richer 阅读(483) 评论(0) 推荐(0)

控件串口编程

摘要: 1.添加控件通过菜单Project→Add to Project→Components and Control插入即可,再将该控件从工具箱中拉到对话框中。 2.在窗口上添加一个串口控件,随便放一个位置,此控件是不可见的。3.为控件添加变量m_com为后面操作做准备,如果不添加变量也可以用GetDlgItem函数获取句柄进行操作4.打开串口先获取串口是否打开,如果打开了就先关闭,可以避免和其他的串口软件冲突。也可以随时更改串口设备,比如更改波特率等 if (m_com.GetPortOpen()) { m_com.SetPortOpen(0); } m_com.SetCommPort(nUa.. 阅读全文
posted @ 2013-09-13 21:11 you Richer 阅读(317) 评论(0) 推荐(0)

Bar Codes

摘要: http://acm.hust.edu.cn/vjudge/contest/view.action?cid=31329#problem/N #include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#include#includeusing namespace std ;int n , k , m ;const int maxn = 55 ;long long f[ maxn ][ 阅读全文
posted @ 2013-09-13 21:08 you Richer 阅读(335) 评论(0) 推荐(0)

JPA相关知识点滴--持续更新中.....

摘要: Java 持久化(JPA)•Java EE 5 在EJB 3.0 中包含JPA 1.0 •参考实现:TopLink Essentials•Java EE 6 包含JPA 2.0 •参考实现:EclipseLink•在WebLogic 10.3.4 中提供•领先的JPA 实现 •RedHat/Jboss 中的Hibernate •Eclipse.org(由Oracle 领导)提供的EclipseLink •OpenJPA (Apache)•WebLogic 的JPA •包含Kodo/OpenJPA(已弃用) •附带EclipseLink 的Oracle... 阅读全文
posted @ 2013-09-13 21:05 you Richer 阅读(163) 评论(0) 推荐(0)

TCP拥塞控制算法内核实现剖析(十)

摘要: 内核版本:3.2.12主要源文件:linux-3.2.12/ net/ ipv4/ tcp_veno.c主要内容:Veno的原理和实现Author:zhangskd @ csdn blog概要Veno结合了Vegas和Reno,故得此名。Veno的主要目的在于区分随机丢包和无线丢包。Vegas能够测量网络瓶颈路由器中属于此连接的数据包个数,Veno正是利用这一变量来区分随机丢包和拥塞丢包,并采取不同的措施。Veno也改进了窗口增长函数,当网络瓶颈路由器中属于此连接的数据包个数超过一定值时,放缓窗口增长速度。原理我们通过3个问题来了解Veno的原理。(1)如何区分随机丢包和拥塞丢包?Vegas能 阅读全文
posted @ 2013-09-13 21:04 you Richer 阅读(613) 评论(0) 推荐(0)
上一页 1 ··· 95 96 97 98 99 100 101 102 103 ··· 300 下一页