错误经过:在读取Excel时,出现外部表不是预期的格式错误原因1: 由于Excel 97-2003的连接格式与Excel 2010 的 不同造成。以下是从网上摘抄原文Excel “External table is not in the expected format.” .Question:I'm...
分类:
其他好文 时间:
2014-06-18 21:27:00
阅读次数:
410
我们知道java中可以用MessageFormat.format来格式化字符串。这个方法在我们的实际开发中经常用到,有点类似模板,这样我们就不需要用很恶心的拼接字符串了。如下面 String s1="my blogWebSite is {0} and sinaWeiBo is {1} ";Strin...
分类:
编程语言 时间:
2014-06-16 13:18:01
阅读次数:
344
转自:http://blog.csdn.net/lonely_fireworks/article/details/7962171方便自己查阅。常规类型的格式化String类的format()方法用于创建格式化的字符串以及连接多个字符串对象。熟悉C语言的同学应该记得C语言的sprintf()方法,两者...
分类:
其他好文 时间:
2014-06-15 21:30:36
阅读次数:
274
ledisdb现在已经支持replication机制,为ledisdb的高可用做出了保障。使用假设master的ip为10.20.187.100,端口6380,slave的ip为10.20.187.101,端口为6380.首先我们需要master打开binlog支持,在配置文件中指定:use_bin_log : true
在slave的机器上面我们可以通过配置文件指定slaveof开启replic...
分类:
数据库 时间:
2014-06-15 16:44:32
阅读次数:
266
Today we will learn how to get depth data from a kinect and what the format of the data is
kinect code
kinect Initialization
To get the depth data from the kinect, simply change the arg...
分类:
编程语言 时间:
2014-06-15 08:04:16
阅读次数:
640
$_format = function (source, params) { if (arguments.length == 1) return function () { var args = $.makeArray(arguments); ...
分类:
Web程序 时间:
2014-06-15 00:28:21
阅读次数:
312
if (Request["name"] != null) { try { string FileName = MyCrypt.Decrypt(Request["name"]); //string FilePath = Server.MapPath(string.Format("UploadFile....
分类:
其他好文 时间:
2014-06-14 23:47:24
阅读次数:
352
原文:MySQL取得当前时间的函数是什么 格式化日期的函数是什么取得当前时间用 now() 就行。在数据库中格式化时间 用DATE_FORMA T(date, format) .根据格式串format 格式化日期或日期和时间值date,返回结果串。 可用DATE_FORMAT( ) 来格式化DATE...
分类:
数据库 时间:
2014-06-14 18:33:24
阅读次数:
263
在做读取Excel表格数据时,碰到有小数点的数字,用double和float来求和时会多出好多位小数,看起来总觉得怪怪的,怎样控制它的长度呢?
DecimalFormat df = new DecimalFormat("########.0");
//四舍五入
value = Double.parseDouble(df.format(value));
我这里是控制一位小数,如果要求两位...
分类:
编程语言 时间:
2014-06-14 14:53:35
阅读次数:
260
PDF(Portable Document Format)文件格式是Adobe公司开发的电子文件格式。这种文件格式与操作系统平台无关,这一特点使它成为在Internet上进行电子文档发行和数字化信息传播的理想文档格式。越来越多的电子图书、产品说明、公司文告、网络资料、电子邮件开始使用PDF格式文件。PDF格式文件目前已成为数字化信息事实上的一个工业标准。...
分类:
其他好文 时间:
2014-06-13 21:45:04
阅读次数:
452