2009-11-17 83 views
0

如何將csv文件上傳到Flex中的java類?Flex中的CSV文件上傳

+0

上傳到java類?你在服務器端使用什麼? – Amarghosh 2009-11-17 05:37:01

+0

服務器端技術是java – 2009-11-17 13:55:12

+0

在提出問題之前記錄您所做的研究工作被認爲是禮貌的。 – 2012-11-20 03:32:37

回答

3
//the following code will post your csv string to the url specified by serverUrl 
var loader:URLLoader = new URLLoader(); 
var req:URLRequest = new URLRequest(serverUrl); 
req.data = csvString; 
req.method = URLRequestMethod.POST; 
loader.load(req); 
+0

感謝您的支持, 但我怎樣才能從客戶端上傳一個文件到我的應用程序。 – 2009-11-18 07:41:11

+0

使用FileReference類。調用browse方法讓用戶選擇文件,監聽select事件,並從select-handler中調用upload。未經用戶許可,您不能上傳。 FileReference是使用flash將用戶機器上的文件上傳到服務器的唯一方法。 http://livedocs.adobe.com/flash/9.0/ActionScriptLangRefV3/flash/net/FileReference.html – Amarghosh 2009-11-18 08:37:28