Skip to content

Instantly share code, notes, and snippets.

View liuzhengyang's full-sized avatar
🎉
bytejava

刘正阳 | bytejava.cn liuzhengyang

🎉
bytejava
View GitHub Profile
function FindProxyForURL(url, host)
{
return "SOCKS 192.168.0.101:1080";
}
@liuzhengyang
liuzhengyang / BuildClass.java
Created April 18, 2016 09:01
字节码ASM使用
package com.lzy.research;
import org.objectweb.asm.ClassWriter;
import org.objectweb.asm.MethodVisitor;
import org.objectweb.asm.Opcodes;
import java.io.FileOutputStream;
import java.io.IOException;
import java.lang.reflect.InvocationTargetException;