码迷,mamicode.com
首页 >  
搜索关键字:map file    ( 77186个结果
记住不要把Bitmap往List等集合放
很多时候,不注意这些细节,直接把bitmap放入List集合中,再者用完忘记清空bitmap,List集合,很容易造成内存泄露 就算你有良好的编程习惯,用完就清空掉,但是数据在list.add()循环的时候就报内存泄露了,还没等你清空,已经oom了 所以,开发中不建议把Bitmap放入list集合中...
分类:其他好文   时间:2014-07-22 23:04:34    阅读次数:287
Altium designer 6 PCB中放置厂家Logo的方法
问题现状描述:    如何在PCB中放置单位的 LOGO (单位徽标)? 处理问题方法: 1. 把LOGO 保存成 单色的 BMP 图像. 2. 在PCB 界面下使用 Open\file 命令打开文件”C:\Program Files\Altium Designer   6\Examples\Scripts\Delphiscript Scripts\Pcb\...
分类:其他好文   时间:2014-07-22 23:01:54    阅读次数:389
给文件简单加密
#include #include #include #include #include #define BUFF_LEN 1024using namespace std;long file_len(string file_name);void init(string file_name){}voi...
分类:其他好文   时间:2014-07-22 23:00:54    阅读次数:190
maven File encoding has not been set
原pom.xml配置文件: 4.0.0 com.my.helloworld hello-world 1.0-SNAPSHOT Maven Hello World Project junit jun...
分类:其他好文   时间:2014-07-22 22:59:36    阅读次数:374
hadoop wordCount运行
本文以康哥的博客为基础进行修改和补充,详见:http://kangfoo.github.io/article/2014/01/hadoop1.x-wordcount-fen-xi/hadoop mapreduce 过程粗略的分为两个阶段: 1.map; 2.redurce(copy, sor...
分类:其他好文   时间:2014-05-02 00:06:57    阅读次数:553
is not in the sudoers file解决方法
用sudo时提示"xxx is not in the sudoers file. This incident will be reported.其中XXX是你的用户名,也就是你的用户名没有权限使用sudo,我们只要修改一下/etc/sudoers文件就行了。 下面是修改方法:1)进入超级用户模式。也...
分类:其他好文   时间:2014-05-01 22:46:43    阅读次数:465
[cocos2dx 3.0 + xcode]坑点记录
1: 新项目创建 1.下载最新Python,安装 2.解压引擎包 3.运行终端,切换到引擎目录(直接cd拖动文件夹到光标即可得到路径) 4.按照文档例子: $ cd cocos2d-x $ ./setup.py $ source FILE_TO_SAVE_S...
分类:其他好文   时间:2014-05-01 19:16:21    阅读次数:319
libpcre.so.1 cannot be found
./nginx: error while loading shared libraries: libpcre.so.1: cannot open shared object file: No such file or directory...
分类:其他好文   时间:2014-04-30 22:43:38    阅读次数:346
Struts2中的异步提交(ajaxfileupload异步上传(图片)插件的使用)
服务器端采用struts2来处理文件上传。 所需环境: jquery.js ajaxfileupload.js struts2所依赖的jar包 及struts2-json-plugin-2.1.8.1.jar 编写文件上传的Action package com.ajaxfile.action; import java.io.File; import java.io.Fi...
分类:其他好文   时间:2014-04-30 22:43:38    阅读次数:392
浅谈mmap()
原型:#include void * mmap(void *addr, size_t len, int port, int flag, int fildes)参数fd为即将映射到进程空间的文件描述字,一般由open()返回,同时,fd可以指定为-1,此时须指定flags参数中的MAP_ANON,表明进行的是匿名映射(不涉及具体的文件名,避免了文件的创建及打开) 实际上目前的glibc 对mal...
分类:其他好文   时间:2014-04-30 22:23:40    阅读次数:307
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!