derdump.java
来自「《移动Agent技术》一书的所有章节源代码。」· Java 代码 · 共 35 行
JAVA
35 行
package org.bouncycastle.asn1.util;import java.util.*;import org.bouncycastle.asn1.*;/** * @deprecated use ASN1Dump. */public class DERDump extends ASN1Dump{ /** * dump out a DER object as a formatted string * * @param obj the DERObject to be dumped out. */ public static String dumpAsString( DERObject obj) { return _dumpAsString("", obj); } /** * dump out a DER object as a formatted string * * @param obj the DERObject to be dumped out. */ public static String dumpAsString( DEREncodable obj) { return _dumpAsString("", obj.getDERObject()); }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?