`
zhong871004
  • 浏览: 62905 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论
文章列表
这个问题会出现两种情况。第一种是UnsatisfiedlinkError:dll名称。说明dll没有放到合适的位置。对于Android开发,我们一般把so放在libs目录下,但是还是会出现这个错误。根本原因System.loadLibrary函数会加载你指定的so,该so中需要链接的所有符号都需要能够链接到,如果有一个链接不成功,那么整个so也会加载失败。仔细检查so中需要的所有符号,确保其存在且在正确的位置上。第二种是UnsatisfiedlinkError:方法名称。说明dll已经成功加载,但是方法名字错了。这个错误最最常见而且基本的解决方法是:仔细对比你的native 方法的原型确保与ja ...
由于安装的jdk版本不同,导致在两个地方运行同一个安卓项目是:先是出现   Android requires compiler compliance level 5.0 or 6.0. Found '1.4' instead. Please use Android Tools > Fix Project Properties  提示,关于这个,就是再项目上右键——>Android Tools——>Fix Project Properties   按上述方法做后,又出现如下错误提示   gen already exists but is not a sou ...
  - (void)removeFileWithName:(NSString *)fileName { // you need to write a function to get to that directory NSString *filePath = [[self stringForDocumentDirectroy]stringByAppendingPathComponent:fileName]; NSFileManager *fileManager = [NSFileManager defaultManager]; if ([fileMan ...
- (NSString *)stringForDocumentDirectroy { NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES); return [paths objectAtIndex:0]; }  
具体可以参考这里   主要做法是启动模拟器,设置好模拟器的sd card 的size   然后 cd 到 android\android-sdk-windows\platform-tools  目录下   运行命令 adb remount   最后 进行 push 就能将so文件放入到 system\lib下了
UltraEdit 每次打开mac下的新文件的时候,总是提示:文件可能不是DOS格式, 你要转换 File 为 DOS 格式吗? 烦死了,可以做如下处理: 高级 -> 配置 -> 文件处理 -> DOS/UNIX/MAC 处理 -> UNIX/MAC 文件检测/转换 中,取消原先选择的检测文件类型并提示进行更改,选取 禁用
汉字编码采用GBK形式(GBK-EUC-H)   所以要输出的汉子应该也采用gbk形式 [@"汉语" cStringUsingEncoding:CFStringConvertEncodingToNSStringEncoding(kCFStringEncodingGB_18030_2000)]     HPDF_Page_BeginText(page1); HPDF_UseCNSFonts(pdf); HPDF_UseCNSEncodings(pdf); const char *fontname = HPDF_LoadTTFontFromFile(p ...
邮件 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"mailto://developers@apple.com"]]; 电话 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel://13333333333"]]; 短信 [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"sms:// ...
/* HELLO.C -- Hello, world */ #include "stdio.h" int strlength(char *str) { if(*str=='\0') return 0; //str++; return (strlength(++str)+1); } void main() { printf("Hello, world\n"); char *str = "helloworld"; int i=strlen ...

thinkphp 去掉index.php

    博客分类:
  • php
去掉URL里面的index.php 是为了SEO的需要,需要服务器开启URL_REWRITE模块。下面的配置过程可以参考下:1  httpd.conf配置文件中加载了mod_rewrite.so模块   #LoadModule rewrite_module modules/mod_rewrite.so把前面的警号去掉2  AllowOverride None 将None改为 All   <Directory "cgi-bin">     AllowOverride All     Options None     Order allow,deny   ...
点击“开始”-->运行--->输入CMD,然后按回车键,出现命令提示符   在命令提示符后输入"CONVERT F: /FS:NTFS"(不包括引号,注意在CONVERT后留一个空格),回车后就会有提示了,然后按照提示去做就可以了。 win7下,要在附件里以管理员的身份运行cmd命令
mysqldump -uroot -p databasename > d:\databasename.sql
判断CGMutablePathRef是否存在 if (path != NULL) CGPathAddLineToPoint(path, NULL, point.x, point.y); 判断CGMutablePathRef是否含有元素 if (!CGPathIsEmpty(path)) CGPathAddLineToPoint(path, NULL, point.x, point.y);  
无法使用nscoding协议来实现,只能将图片写入到doucment里面,使用UIImagePNGRepresentation()方法,将图片转化为nsdata,然后使用[data writeToFile:filePath atomically:YES];写入图片库。   归档: UIImage *bImg = [UIImage imageNamed:KBASKETBALLNAME]; [UIImagePNGRepresentation(bImg) writeToFile:filePath atomically:YES]; 解档: UIImage *img = [UI ...
1、将图片添加到ios模拟器上的safari的浏览器,这时你的图片将显示在浏览器里   2、鼠标左键点击并按住图片 3、然后会出现保存图片的按钮 4、这时你只要点击保存,然后图片库里就有刚才那张图片了      
Global site tag (gtag.js) - Google Analytics