English 中文(简体)
复制没有利用无线或全球扰动系统连接服务器
原标题:Aplication is not using the wireless or GPRS connection to connect the server

I ve created an application which connects to the "apache tomcat server" through wireless lan. i connect to an IP address

            URL url= new URL("http://192.168.10.143:8080/MyServer/"+"ServletName/");
            urlConn=(HttpURLConnection)url.openConnection();

<><>>>> 该申请在安乐器上操作,但不是在实际装置上操作。

在J2me下开发的i ve应用原则上与java/symbian电话相同,然后电话要求与无线路由器或PRS连接建立链接。

But on android device there is no response from the device for connecting to the server. What might be the problem???

我也把这一点放在了Manifest。

 <uses-permission android:name="android.permission.INTERNET" />

怎么做?

最佳回答

你们应当使用你的公共IP地址和港口:“80”。 关于如何做到这一点的更多信息,请登录:。 你们可以找到几乎所有的航道,以及如何开一个特定的港口。

Hope that Helps, Wesley.

问题回答

你们正在使用一个内部IP地址,这个地址在贵国的局域网之外是明显的。 您需要使用公共IP地址(这无疑是全球PRS连接的)或调整其Wi-Fi路由器,以便提供使用服务器的机会。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签