📄 start.java
字号:
// Decompiled by Jad v1.5.8e2. Copyright 2001 Pavel Kouznetsov.
// Jad home page: http://kpdus.tripod.com/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi space
// Source File Name: Start.java
package org.gudy.azureus2.ui.swt.osx;
import java.io.*;
import java.net.Socket;
import org.gudy.azureus2.core3.util.Debug;
public class Start
{
public Start(String args[])
{
Socket sck;
PrintWriter pw;
sck = null;
pw = null;
System.out.println("StartSocket: passing startup args to already-running Azureus java process.");
sck = new Socket("127.0.0.1", 6880);
pw = new PrintWriter(new OutputStreamWriter(sck.getOutputStream(), "UTF8"));
StringBuffer buffer = new StringBuffer("Azureus Start Server Access;args;");
for (int i = 0; i < args.length; i++)
{
String arg = args[i].replaceAll("&", "&&").replaceAll(";", "&;");
buffer.append(arg);
buffer.append(';');
}
pw.println(buffer.toString());
pw.flush();
Exception e;
try
{
if (pw != null)
pw.close();
}
// Misplaced declaration of an exception variable
catch (Exception e) { }
try
{
if (sck != null)
sck.close();
}
// Misplaced declaration of an exception variable
catch (Exception e) { }
break MISSING_BLOCK_LABEL_222;
e;
Debug.printStackTrace(e);
try
{
if (pw != null)
pw.close();
}
// Misplaced declaration of an exception variable
catch (Exception e) { }
try
{
if (sck != null)
sck.close();
}
// Misplaced declaration of an exception variable
catch (Exception e) { }
break MISSING_BLOCK_LABEL_222;
Exception exception;
exception;
try
{
if (pw != null)
pw.close();
}
catch (Exception e) { }
try
{
if (sck != null)
sck.close();
}
catch (Exception e) { }
throw exception;
}
public static void main(String args[])
{
new Start(args);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -