我想用AKP-Studio反编译一个APK(它使用Apktool 2.0.0-Beta9),但在每个APK上我都会收到此错误:
May 05, 2015 5:38:30 PM brut.androlib.ApkDecoder decode
INFO: Using Apktool 2.0.0-Beta9 on com.****-1.apk
May 05, 2015 5:38:30 PM brut.androlib.res.AndrolibResources loadMainPkg
INFO: Loading resource table...
Exception in thread "main" brut.androlib.AndrolibException: Could not decode arsc file
at brut.androlib.res.decoder.ARSCDecoder.decode(ARSCDecoder.java:54)
at brut.androlib.res.AndrolibResources.getResPackagesFromApk(AndrolibResources.java:604)
at brut.androlib.res.AndrolibResources.loadMainPkg(AndrolibResources.java:74)
我在不同版本的Windows(64和32位)的不同系统上检查了它
我的java版本是:"1.8.0_45"
如果有任何解决方案,请告诉我.
我有一个非常简单的查询:
  SELECT   comments.*
  FROM comments 
  WHERE comments.imageid=46
这是我的表:
CREATE TABLE IF NOT EXISTS `comments` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `imageid` int(10) unsigned NOT NULL DEFAULT '0',
  `uid` bigint(20) unsigned NOT NULL DEFAULT '0',
  `content` text CHARACTER SET utf8,
  `adate` datetime DEFAULT NULL,
  `ip` int(10) unsigned DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `ids` (`imageid`) USING BTREE,
  KEY `dt` (`adate`) USING BTREE
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=12 ;
但是MySql不能在这个简单的查询上使用索引.这是解释结果:
id  select_type     table   type    possible_keys   key     key_len     ref     rows    filtered    Extra …我在css3中使用(列数:4)来在4列中拟合9个图像(这里想到的东西:http://css-tricks.com/seamless-responsive-photo-grid/)
但在我的情况下,9个图像只适合3列(每列3个),最后一列为空!我怎样才能让它首先填充行?