1、ant编译时突然报错:E:\android-sdk\tools\ant\build.xml:657: The following error occurred while executing this line: null returned: 1 2、直接修改了sdk里面的配置,个人觉得不太妥, ...
分类:
其他好文 时间:
2016-09-12 12:30:43
阅读次数:
122
1741. Communication Fiend Time limit: 1.0 second Memory limit: 64 MB Kolya has returned from a summer camp and now he's a real communication fiend. He ...
分类:
其他好文 时间:
2016-09-10 14:41:29
阅读次数:
287
* java.lang.UnsatisfiedLinkError: Native method not found: 本地方法没有找到 * 本地函数名写错 * 忘记加载.so文件 没有调用System.loadlibrary * findLibrary returned null * System. ...
分类:
其他好文 时间:
2016-09-05 19:24:36
阅读次数:
127
Django的后台功能非常实用:首先需注册app到后台catasset/apps.py
from__future__importunicode_literals
fromdjango.appsimportAppConfig
classAssetConfig(AppConfig):
name=‘asset‘
verbose_name=‘环境列表‘#后台显示的名称
catasset/admin.py
fromdjango.contribimport..
分类:
移动开发 时间:
2016-09-02 01:00:24
阅读次数:
589
undefined reference 往往是链接时出现错误,无法解析引用。这篇文章总结的很好undefined reference问题总结 error: ld returned 1 exit status 链接文件没有建立 案例 编译: 错误在于没有对static成员变量在类外初始化,所以没有对s ...
分类:
其他好文 时间:
2016-08-21 13:50:07
阅读次数:
138
在查询一个DB中的Table时,SQL Server 抛出异常: The operating system returned error 2(The system cannot find the file specified.) to SQL Server during a read at offs ...
分类:
数据库 时间:
2016-08-12 19:40:03
阅读次数:
347
一、维基百科怎么说 A hash function is any function that can be used to map data of arbitrary size to data of fixed size. The values returned by a hash function ...
分类:
其他好文 时间:
2016-08-06 09:44:13
阅读次数:
154
安装jmeter以后打开会弹出命令窗口提示: WARNING: Could not open/create prefs root node Software\JavaSoft\Prefs at root 0 x80000002. Windows RegCreateKeyEx(...) returne ...
分类:
编程语言 时间:
2016-08-06 00:36:00
阅读次数:
289
在django中的setting.py中: LANGUAGE_CODE = 'en-us' TIME_ZONE = 'Asia/Shanghai' #'UTC' USE_I18N = True USE_L10N = True USE_TZ = True 由于USE_TZ=True开启了导致错误 解决 ...
分类:
数据库 时间:
2016-07-23 19:36:53
阅读次数:
387
Implement function atoi to convert a string to an integer. If no valid conversion could be performed, a zero value is returned. If the correct value i ...
分类:
其他好文 时间:
2016-07-23 07:26:53
阅读次数:
141