我正在開發一個需要與HTTP服務器建立連接並上傳數據的Android項目。現在代碼已經由其他人完成,並且它在HTTP服務器上工作。不過,我們希望將其與Google App Engine連接。它似乎只改變了服務器IP,服務器用戶名...將做,但我不知道如何獲得GAE服務器的IP /用戶名/端口...。我對Android開發完全陌生。任何人都可以幫助我基於下面的代碼?如何通過http協議將數據從Android發送到Google App Engine?
public class ServerUploaderService extends RemoteDataService {
private static final String TAG = "ServerUploaderService";
private static final String SERVER_IP = "***.***.***.***";
private static final String SERVER_USERNAME = "REMOVED";
private static final String SERVER_PASSWORD = "REMOVED";
private static final int SERVER_PORT = 22;
private static final int SERVER_LPORT = 22;
.....
}
謝謝!