RT ,按照网上的教程修改 info.plist( http://blog.csdn.net/huanghr_1/article/details/39735335)
并不行,新版的.plist 文件并没有名 vmoptions 的 key ,参看以前版本在 JVMOptions 下面增加了-Dfile...参数也是无效的。( ssl 证书都已安装好)
有谁知道怎么解决么?
1
clare0621 OP 额,自己解决了。
================== 在 JVMOptions 下面添加单独的: <string>-Xmx512m</string> <string>-Dfile.encoding=UTF-8</string> 就行(不要将两个参数放一个标签里)。 第一个是避免内存溢出异常的。 |
2
surefire 2016-02-03 09:40:20 +08:00
Charles 是抓包的那个吗?
|
4
clare0621 OP @clare0621 如果是 Https 请求,还需安装证书,具体可参考 http://yijingping.github.io/2014/08/01/net-analyzer.html
|
5
ChiangDi 2016-04-17 16:20:26 +08:00
不错 刚好碰到 感谢分享
|
6
whisper1225 2016-06-01 22:45:57 +08:00
请问我的改之后运行弹框显示 main class name is required 是为什么
|
7
whisper1225 2016-06-01 22:46:48 +08:00
@clare0621 请问我的改之后运行弹框显示 main class name is required 是为什么
|
8
clare0621 OP @whisper1225 不太清楚额,请确定用的正版,并且没有操作错。
|
9
whisper1225 2016-06-03 19:34:56 +08:00
@clare0621 已经解决了 谢谢
|
10
zhangzijun 2016-06-07 18:00:22 +08:00
@whisper1225 请问你是怎么解决的呢?
|
11
potcode 2016-07-19 16:21:23 +08:00
@clare0621 你好,为什么我添加这段代码之后, Charles 软件直接打开不了。( ps :我安装的是破解版的, 3.11.5 版本的)
|
13
flight2006 2016-09-15 09:02:22 +08:00
@whisper1225 同问怎么修好的?
|
14
zhangchioulin 2016-10-31 18:07:53 +08:00
|
15
corona 2017-03-18 02:03:04 +08:00
遇到同样的问题,用楼主的方法解决了。 666
|
16
phperstar 2018-06-12 10:06:07 +08:00
如果是两行,要加<array></array> ,不然软件启动不起来
<key>VMOptions</key> <array> <string>-Xmx512m</string> <string>-Dfile.encoding=UTF-8</string> </array> |