本文轉自【onlyzhangqin的CSDN Blog http://blog.csdn.net/onlyzhangqin/archive/2008/06/03/2502512.aspx】
- <? xml version = "1.0" encoding = "utf-8" ?>
- < mx:Application xmlns:mx = "http://www.adobe.com/2006/mxml" layout = "absolute"
- creationComplete = "feedRequest.send()" >
- < mx:HTTPService id = "feedRequest"
- url = "http://localhost:8080/flexweb/HelloWorld"
- useProxy = "false" />
- < mx:Panel x = "10" y = "10" width = "475" height = "400" layout = "absolute"
- title = "{dgPosts.selectedItem.name}" color = "#1C06F6" fontSize = "16" >
- < mx:DataGrid x = "20" y = "20" id = "dgPosts" width = "400" dataProvider = "{feedRequest.lastResult.songs.song}" fontFamily = "TimesNewRoman" fontSize = "16" >
- < mx:columns >
- < mx:DataGridColumn headerText = "Name" dataField = "name" />
- < mx:DataGridColumn headerText = "Singer" dataField = "singer" />
- < mx:DataGridColumn headerText = "URL" dataField = "addrURL" />
- </ mx:columns >
- </ mx:DataGrid >
- < mx:LinkButton x = "20" y = "225" label = "下載音樂" click = "navigateToURL(newURLRequest(dgPosts.selectedItem.addrURL));" fontFamily = "TimesNewRoman" fontSize = "20" color = "#0B3C0B" />
- < mx:TextArea x = "20" y = "175" width = "400" text = "{dgPosts.selectedItem.lrc}" fontFamily = "TimesNewRoman" fontSize = "16" />
- </ mx:Panel >
- </ mx:Application >
- <? xml version = "1.0" encoding = "utf-8" ?>
- < mx:Application xmlns:mx = "http://www.adobe.com/2006/mxml" layout = "absolute"
- creationComplete = "feedRequest.send()" >
- < mx:HTTPService id = "feedRequest"
- url = "http://localhost:8080/flexweb/HelloWorld"
- useProxy = "false" />
- < mx:Panel x = "10" y = "10" width = "475" height = "400" layout = "absolute"
- title = "{dgPosts.selectedItem.name}" color = "#1C06F6" fontSize = "16" >
- < mx:DataGrid x = "20" y = "20" id = "dgPosts" width = "400" dataProvider = "{feedRequest.lastResult.songs.song}" fontFamily = "TimesNewRoman" fontSize = "16" >
- < mx:columns >
- < mx:DataGridColumn headerText = "Name" dataField = "name" />
- < mx:DataGridColumn headerText = "Singer" dataField = "singer" />
- < mx:DataGridColumn headerText = "URL" dataField = "addrURL" />
- </ mx:columns >
- </ mx:DataGrid >
- < mx:LinkButton x = "20" y = "225" label = "下載音樂" click = "navigateToURL(newURLRequest(dgPosts.selectedItem.addrURL));" fontFamily = "TimesNewRoman" fontSize = "20" color = "#0B3C0B" />
- < mx:TextArea x = "20" y = "175" width = "400" text = "{dgPosts.selectedItem.lrc}" fontFamily = "TimesNewRoman" fontSize = "16" />
- </ mx:Panel >
- </ mx:Application >
保存文件,編譯執行。此刻由于沒有部署本地服務器來執行 http://localhost:8080/flexweb/HelloWorld
所以會出現錯誤信息,不要緊,我們開始搭建servlet.
servlet的具體代碼如下: HelloWorld.java
- packagetest;
- importjava.io.*;
- importjava.sql.Connection;
- importjava.sql.DriverManager;
- importjava.sql.ResultSet;
- importjava.sql.SQLException;
- importjava.sql.Statement;
- importjavax.servlet.*;
- importjavax.servlet.http.*;
- publicclassHelloWorldextendsHttpServlet{
- publicstaticString dbDriver = "sun.jdbc.odbc.JdbcOdbcDriver" ;
- publicString connStr = "jdbc:odbc:songs" ;
- publicResultSet rs = null ;
- publicConnection con = null ;
- publicStatement st = null ;
- publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)
- throwsServletException,IOException{
- response.setContentType("text/xml; charset = utf -8");
- response.setHeader("Cache-Control","no-cache");
- String content = "" ;
- String name = "" ;
- String singer = "" ;
- String lrc = "" ;
- String addrURL = "" ;
- try{
- Connection condb = getConnection ();
- st = condb .createStatement();
- rs = st .executeQuery("select*fromsongs");
- while(rs.next()){
- name = rs .getString("name");
- singer = rs .getString("singer");
- lrc = rs .getString("lrc");
- addrURL = rs .getString("url");
- content+=" < song > < name > "+name+" </ name > < singer > "+singer+" </ singer > < lrc > "+
- lrc+" </ lrc > < addrURL > "+addrURL+" </ addrURL > </ song > ";
- }
- }catch(ClassNotFoundExceptione){
- e.printStackTrace();
- }catch(SQLExceptione1){
- e1.printStackTrace();
- }
- content =" <? xml version=/" 1 .0/" encoding =/"utf-8/" ?> < songs > "+content;
- content+=" </ songs > ";
- System.out.println(content);
- response.getWriter().write(content);
- }
- publicConnectiongetConnection()throwsClassNotFoundException{
- try{
- Class.forName(dbDriver);
- System.out.println("Connecttodbsuccessfuly!");
- con = DriverManager .getConnection(connStr);
- }catch(SQLExceptione){
- con = null ;
- System.err.println(e.getMessage());
- }
- returncon;
- }
- }
- packagetest;
- importjava.io.*;
- importjava.sql.Connection;
- importjava.sql.DriverManager;
- importjava.sql.ResultSet;
- importjava.sql.SQLException;
- importjava.sql.Statement;
- importjavax.servlet.*;
- importjavax.servlet.http.*;
- publicclassHelloWorldextendsHttpServlet{
- publicstaticString dbDriver = "sun.jdbc.odbc.JdbcOdbcDriver" ;
- publicString connStr = "jdbc:odbc:songs" ;
- publicResultSet rs = null ;
- publicConnection con = null ;
- publicStatement st = null ;
- publicvoiddoGet(HttpServletRequestrequest,HttpServletResponseresponse)
- throwsServletException,IOException{
- response.setContentType("text/xml; charset = utf -8");
- response.setHeader("Cache-Control","no-cache");
- String content = "" ;
- String name = "" ;
- String singer = "" ;
- String lrc = "" ;
- String addrURL = "" ;
- try{
- Connection condb = getConnection ();
- st = condb .createStatement();
- rs = st .executeQuery("select*fromsongs");
- while(rs.next()){
- name = rs .getString("name");
- singer = rs .getString("singer");
- lrc = rs .getString("lrc");
- addrURL = rs .getString("url");
- content+=" < song > < name > "+name+" </ name > < singer > "+singer+" </ singer > < lrc > "+
- lrc+" </ lrc > < addrURL > "+addrURL+" </ addrURL > </ song > ";
- }
- }catch(ClassNotFoundExceptione){
- e.printStackTrace();
- }catch(SQLExceptione1){
- e1.printStackTrace();
- }
- content =" <? xml version=/" 1 .0/" encoding =/"utf-8/" ?> < songs > "+content;
- content+=" </ songs > ";
- < A title = system href = "http://www.alimama.com/membersvc/buyadzone/buy_ad_zone.htm?adzoneid=892989" target = _blank > system </ A > .out.println(content);
- response.getWriter().write(content);
- }
- publicConnectiongetConnection()throwsClassNotFoundException{
- try{
- Class.forName(dbDriver);
- < A title = system href = "http://www.alimama.com/membersvc/buyadzone/buy_ad_zone.htm?adzoneid=892989" target = _blank > system </ A > .out.println("Connecttodbsuccessfuly!");
- con = DriverManager .getConnection(connStr);
- }catch(SQLExceptione){
- con = null ;
- < A title = system href = "http://www.alimama.com/membersvc/buyadzone/buy_ad_zone.htm?adzoneid=892989" target = _blank > system </ A > .err.println(e.getMessage());
- }
- returncon;
- }
- }
如果部署程序有問題的話,可以留言交流。
附件下載: Flex3通過Servlet連接數據庫
更多文章、技術交流、商務合作、聯系博主
微信掃碼或搜索:z360901061

微信掃一掃加我為好友
QQ號聯系: 360901061
您的支持是博主寫作最大的動力,如果您喜歡我的文章,感覺我的文章對您有幫助,請用微信掃描下面二維碼支持博主2元、5元、10元、20元等您想捐的金額吧,狠狠點擊下面給點支持吧,站長非常感激您!手機微信長按不能支付解決辦法:請將微信支付二維碼保存到相冊,切換到微信,然后點擊微信右上角掃一掃功能,選擇支付二維碼完成支付。
【本文對您有幫助就好】元
