使用MAT比较多个heap dump文件 调试内存泄露时,有时候适时比较2个或多个heap dump文件是很有用的。这时需要生成多个单独的HPROF文件。下面是一些关于如何在MAT里比较多个heap dumps的内容(有一点复杂):1. 第一个HPROF 文件(usingFile > Open Heap Dump ).2. 打开Histogram view.图1. Histogra...
分类:
其他好文 时间:
2014-08-12 13:39:24
阅读次数:
183
In this DocumentDetailsActionsConcepts/DefinitionsDiagnosing (starting point is Note 7445.1)Additional ResourcesCommunity: Incident (600-7445) Analysi...
分类:
其他好文 时间:
2014-08-06 18:25:41
阅读次数:
339
1. 引用上一层目录import syssys.path.append('..')import xx2. python jsonJSON是一种轻量级的数据交换格式。可以解决数据库中文存储问题,对象序列化问题,等等。import jsonencodedjson = json.dumps(obj)d.....
分类:
编程语言 时间:
2014-08-04 10:50:16
阅读次数:
232
Oracle Database - Enterprise Edition - Version 8.1.7.4 and later Information in this document applies to any platform. **Checked for relevance 06-Apr-...
分类:
数据库 时间:
2014-08-04 10:45:27
阅读次数:
363
In this article, I gathered up all the dumps, who found. If you see something new table will be updated.If you want to replenish the base - write in c...
分类:
移动开发 时间:
2014-07-19 23:12:35
阅读次数:
867
部分ssrpc.py代码分析 -- 服务端: 1 #!/usr/bin/python3 2 3 from xmlrpc.client import Fault, dumps, loads 4 import sys 5 from socketserver import ForkingMixIn 6 ....
分类:
编程语言 时间:
2014-07-16 18:14:43
阅读次数:
296
我们知道,python中的字符串分普通字符串和unicode字符串,一般从数据库中读取的字符串会自动被转换为unicode字符串下面回到重点,使用json.dumps时,一般的用法为:>>> obj={"name":"测试"}>>> json.dumps(obj)'{"name": "\\u6d4b...
分类:
编程语言 时间:
2014-07-03 06:51:34
阅读次数:
544
Json编码,在python里就是一句话:
json.dumps(user_data)
但是Erlang没有自带的Json模块,只能自己造轮子:
先下载mochijson2:
https://github.com/mochi/mochiweb/blob/master/src/mochijson2.erl
用erlc编译
然后,上代码:
get_json_data() ->
...
分类:
Web程序 时间:
2014-06-10 06:46:21
阅读次数:
309
最近编写Python程序时经常遇见中文相关的问题,这里说一个问题的解决方法。
我在使用json模块的dumps()函数时,因为涉及到中文,报出如下错误:
ascii codec can't decode byte 0xe8 in position 0:ordinal not in range(128)
这是编码相关的问题,在该程序中加入如下代码:
import sys
reload(sys)
sys.setdefaultencoding('utf-8')
这样就可以解决该问题了,希望对大家有所帮助。...
分类:
编程语言 时间:
2014-05-21 09:47:21
阅读次数:
323