码迷,mamicode.com
首页 > 2014年11月29日 > 全部分享
关于使用apktool可以反编译无法回编译的解决问题
转自:http://blog.csdn.net/a8082649/article/details/37603513但是进行回汇编时出现:F:\apktool>apktoolbHelloHello.apkExceptioninthread"main"brut.androlib.AndrolibExce...
分类:其他好文   时间:2014-11-29 11:42:34    阅读次数:113
EasyTouch绑定事件在电脑上点击有效Android上无效的解决方法
最近做一个RPG类的游戏发现使用EasyTouch虚拟摇杆插件在电脑上点击有效Android上无效,查找资料发现是Easy Joystick中的一个属性interaction type要设置成Direct and event,默认的是Event Notification,也就是事件通知,因为进行的....
分类:移动开发   时间:2014-11-29 11:40:55    阅读次数:204
ios数据库
#define DATABASE_PATH [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES)[0]stringByAppendingString:@"/healthCloud.db”]用于...
分类:移动开发   时间:2014-11-29 11:41:12    阅读次数:162
flex datagrid itemrender wordwrap失效
现在我是想把datagrid中的部分字体变个颜色。但是重写set data函数后发现原先的wordwrap自动换行不好使了。于是就在谷歌上找问题。。参考了两篇:http://stackoverflow.com/questions/8134521/itemrenderer-is-cancelling-...
分类:其他好文   时间:2014-11-29 11:42:13    阅读次数:146
数据结构基本概念和算法分析
一、数据结构基本概念1. 数据:数据是对客观事物的符号表示,在计算机科学中是指所有能输入到计算机中并被计算机程序处理的符号的总称。2. 数据元素:数据元素是数据的基本单位,在计算机程序中通常作为一个整体进行考虑和处理。一个数据元素可由若干个数据项组成。数据项是数据的不可分割的最小单位。3. 数据对象...
分类:编程语言   时间:2014-11-29 11:41:13    阅读次数:172
【转】推荐UML插件AmaterasUML
基于Green UML在使用过程中的问题(对于大工程,点击生成类图后不响应),自己只能再次寻找其他的插件。在无意中,发现AmaterasUML。 官方网站:http://amateras.sourceforge.jp/cgi-bin/fswiki_en/wiki.cgi?page=AmaterasU...
分类:其他好文   时间:2014-11-29 11:39:50    阅读次数:163
A Famous Music Composer
描述Mr. B is a famous music composer. One of his most famous work was his set of preludes. These 24 pieces span the 24 musical keys (there are musically...
分类:其他好文   时间:2014-11-29 11:41:36    阅读次数:228
Edit Distance
Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)You have the fol...
分类:其他好文   时间:2014-11-29 11:40:36    阅读次数:255
UVA - 10012
How Big Is It?Ian's going to California, and he has to pack his things, including his collection of circles. Given a set of circles, your program must...
分类:其他好文   时间:2014-11-29 11:39:36    阅读次数:212
Search for a Range
Given a sorted array of integers, find the starting and ending position of a given target value.Your algorithm's runtime complexity must be in the ord...
分类:其他好文   时间:2014-11-29 11:38:36    阅读次数:128
WampServer 在 httpd.conf 中配置多站点
因为要用 ThinkPHP 的当前最新版本 3.2.2,对应要求 PHP 的版本要高于 5.3.0,所以安装了 WampServer 2.2 ( Apache 2.2.21,PHP 5.3.10,MySQL 5.5.20) ,顺便记录一下在 httpd.conf 中配置多站点。第一步:安装 Wamp...
分类:Web程序   时间:2014-11-29 11:39:08    阅读次数:210
CUDA编程学习(一)
/****c code****/#includeint main(){ printf("Hello world!\n); return 0;}/****CUDA code****/_global_ void mykernel(void){}int main(){ mykernel>...
分类:其他好文   时间:2014-11-29 11:39:15    阅读次数:219
xss challenge 解题思路(4-7)
challenge 4:这一关输入依然是过滤的,而且后面的下拉菜单都过滤了,但是我们发现,源码里有name=p3的东西,他的内容提交后不变,so,将value值变为 ""提交后成功。challenge 5:这一关是没有过滤的,但是文本框有maxlength,从原代码中果断删掉。然后构造"" 弹窗成功...
分类:其他好文   时间:2014-11-29 11:39:36    阅读次数:366
mysql登录报错“Access denied for user 'root'@'localhost' (using password: YES”的处理方法
使用/etc/mysql/debian.cnf文件中[client]节提供的用户名和密码:文件内容:[client]host = localhostuser = debian-sys-maint //用户名password = Xgsuj2n8rlvw7jUO //密码socket...
分类:数据库   时间:2014-11-29 11:38:33    阅读次数:274
Leetcode-Valid Parentheses
Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must close in the c...
分类:其他好文   时间:2014-11-29 11:38:05    阅读次数:124
多态性的使用
public class Department { public String name; private int number; public Department() { super(); } public Department(String n...
分类:其他好文   时间:2014-11-29 11:37:11    阅读次数:156
struts2 下载文件
当下载的文件名字中不含有汉字,或者下载的文件不需要考虑用户的权限问题时。直接让超链接的href属性为所要下载的文件名即可。否则最好使用struts2的文件下载机制。 以下载图片为例 完整的代码: action: import java.io.File; import java.io.InputStr...
分类:其他好文   时间:2014-11-29 11:38:33    阅读次数:222
1323条   上一页 1 ... 55 56 57 58 59 60 61 ... 78 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!