【Android】Android上的Jetty

:L 今天看到一个比较变态的。。。jetty port到Android上面了:
http://code.google.com/p/i-jetty/

就是说可以在你手机上运行Jetty,提供servlet,comet push,然后你就有个手机上的local server了。
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="org.mortbay.ijetty">
    <application android:icon="@drawable/icon">
        <activity class=".IJetty" android:label="@string/app_name">
            <intent-filter>
                <action android:value="android.intent.action.MAIN" />
                <category android:value="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>


看起来很变态啊!不知道具体如何用法,大家讨论讨论!

你可能感兴趣的:(android,PHP,servlet,Google,Comet)