本文整理匯總了Java中org.objectweb.asm.ClassWriter.newUTF8方法的典型用法代碼示例。如果您正苦於以下問題:Java ClassWriter.newUTF8方法的具體用法?Java ClassWriter.newUTF8怎麽用?Java ClassWriter.newUTF8使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.objectweb.asm.ClassWriter
的用法示例。
在下文中一共展示了ClassWriter.newUTF8方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: write
import org.objectweb.asm.ClassWriter; //導入方法依賴的package包/類
void write(final ClassWriter cw) {
switch (type) {
case 'I':
cw.newConst(intVal);
break;
case 'J':
cw.newConst(longVal);
break;
case 'F':
cw.newConst(floatVal);
break;
case 'D':
cw.newConst(doubleVal);
break;
case 'S':
cw.newConst(strVal1);
break;
case 's':
cw.newUTF8(strVal1);
break;
case 'C':
cw.newClass(strVal1);
break;
case 'T':
cw.newNameType(strVal1, strVal2);
break;
case 'G':
cw.newField(strVal1, strVal2, (String) objVal3);
break;
case 'M':
cw.newMethod(strVal1, strVal2, (String) objVal3, false);
break;
case 'N':
cw.newMethod(strVal1, strVal2, (String) objVal3, true);
break;
case 'y':
cw.newInvokeDynamic(strVal1, strVal2, (Handle) objVal3, objVals);
break;
case 't':
cw.newMethodType(strVal1);
break;
default: // 'h' ... 'r' : handle
cw.newHandle(type - 'h' + 1 - ((type >= 'q')? 4: 0), strVal1, strVal2, (String) objVal3, type >= 'p');
}
}