码迷,mamicode.com
首页 >  
搜索关键字:assuming 536870912.00 bytes    ( 3912个结果
Berkeley DB的常见API简单分析
1、用来存储类信息的数据库不要求能够存储重复的关键字 例: dbConfig.setSortedDuplicates(false);2、DatabaseEntrt能够支持任何能够转化为bytes数组形式的基本数据。包括java基本类型和可序列化的对象(getBytes转换为UTF-8编码,可以不转)...
分类:数据库   时间:2014-08-01 15:52:21    阅读次数:281
java中String的21种用法
(构造函数必须new出来)  * public String (char[] vaue)                         将一个字符数组变成字符串(构造函数)  * public String (char[] vaue,int offset,int count)    将制定范围内的字符数组变为字符串(构造函数)  * public String (byte[],bytes)...
分类:编程语言   时间:2014-07-31 20:58:47    阅读次数:207
read函数
#include ssize_t read(int fd, void *buf, size_t count);DESCRIPTION read() attempts to read up to count bytes from file descriptor fd into the buffer.....
分类:其他好文   时间:2014-07-28 23:56:34    阅读次数:548
java基础知识回顾之---java String final类构造方法
/*** String 构造方法学习* String(byte[ ] bytes):通过byte数组构造字符串对象。* String(byte[] bytes, int offset, int length) 通过byte数组构造字符串子数组对象* * String(char[ ] value):通...
分类:编程语言   时间:2014-07-27 10:10:32    阅读次数:224
maven 使用 问题记录
Java compiler level does not match the version of the installed Java project facet Assuming that you are using the m2e plugin in Eclipse, you‘ll need to specify the?source?and?targetversions as...
分类:其他好文   时间:2014-07-25 00:11:14    阅读次数:223
系统设计题杂
what happens when you type in a URL in browserIn an extremely rough and simplified sketch, assuming the simplest possible HTTP request, no proxies and...
分类:其他好文   时间:2014-07-22 22:47:34    阅读次数:152
du 命令,对文件和目录磁盘使用的空间的查看
Linuxdu命令也是查看使用空间的,但是与df命令不同的是Linuxdu命令是对文件和目录磁盘使用的空间的查看,还是和df命令有一些区别的.1.命令格式:du[选项][文件]2.命令功能:显示每个文件和目录的磁盘使用空间。3.命令参数:-a或-all显示目录中个别文件的大小。-b或-bytes显示...
分类:其他好文   时间:2014-07-22 22:40:53    阅读次数:300
flex 导出Excel功能实现
方法一:1.Excel导出主要代码:try{var bytes: ByteArray = new ByteArray();bytes.writeMultiByte(DataGridExporter.exportSCV(dataGrid),"cn-gb");var fr:FileReference =...
分类:其他好文   时间:2014-07-21 10:03:13    阅读次数:227
malloc函数具体解释
一、原型:extern void *malloc(unsigned int num_bytes);头文件:#include 或 #include (注意:alloc.h 与 malloc.h 的内容是全然一致的。)功能:分配长度为num_bytes字节的内存块说明:假设分配成功则返回指向被分配内.....
分类:其他好文   时间:2014-07-21 08:35:50    阅读次数:244
【Oracle】常用语句集合
1 oracle常用经典SQL查询 2 常用SQL查询: 3 4 1、查看表空间的名称及大小 5 6 select t.tablespace_name, round(sum(bytes/(1024*1024)),0) ts_size 7 from dba_ta...
分类:数据库   时间:2014-07-20 22:21:32    阅读次数:373
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!