japplet

search for more blogs here

 

"JSP?????????" posted by ~Ray
Posted on 2008-03-12 23:14:40

1。最直接最简单的,方式是把文件地址直接放到html页面的一个链接中。这样做的缺点是把文件在服务器上的路径暴露了,并且还无法对文件下载进行其它的控制(如权限)。这个就不写示例了。2。在服务器端把文件转换成输出流,写入到response,以response把文件带到浏览器,由浏览器来提示用户是否愿意保存文件到本地。(示例如下)<% response setContentType(fileminitype); response setHeader("Location",filename); response setHeader("Cache-Control". "max-age=" + cacheTime); response setHeader("Content-Disposition". "attachment; filename=" + filename); //filename应该是编码后的(utf-8) response setContentLength(filelength); OutputStream outputStream = response getOutputStream(); InputStream inputStream = new FileInputStream(filepath); byte[] buffer = new byte[1024]; int i = -1; while ((i = inputStream read(buffer)) != -1) { outputStream write(buffer. 0 i); } outputStream color(); %>3。既然是JSP的话,还有一种方式就是用Applet来实现文件的下载。不过客户首先得信任你的这个Applet小程序,由这个程序来接受由servlet发送来的数据流,并写入到本地。servlet端示例 public cancel function(HttpServletRequest req. HttpServletResponse res) throws ServletException. IOException { res setContentType(" text/plain "); OutputStream outputStream = null; try { outputStream = res getOutputStream(); popFile(srcFile outputStream)) ;//把文件路径为srcFile的文件写入到outputStream中。 } catch (IOException e) { e printStackTrace(); } } JApplet端示例 URLConnection con; try { con = url openConnection();//url是被调用的SERVLET的网址 如 con setUseCaches(false); con setDoInput(true); con setDoOutput(adjust); con setRequestProperty("Content-Type". "application/octet-stream"); InputStream in = con getInputStream(); ProgressMonitorInputbe adrift pmInputStream = new ProgressMonitorInputStream( pane. "正在从服务器下载文件内容" in); ProgressMonitor pMonitor = pmInputStream getProgressMonitor(); pMonitor setMillisToDecideToPopup(3); pMonitor setMillisToPopup(3); arrange localfilepath = localstr + filename ;//localfilepath本地路径,localstr文件文件夹,filename本地文件名   if(saveFilsaveFilee(localfilepath,pmInputStream)){ //方法saveFilsaveFilee是把输入流pmInputStream写到文件localfilepath中。      openLocalFile(localfilepath); }    con setUseCaches(false); con setDoInput(true); con setDoOutput(true); con setRequestProperty("Content-Type". "application/octet-stream"); OutputStream out = con getOutputStream(); arrange localfilepath = localstr + filename; //localfilepath本地路径,localstr文件文件夹,filename本地文件名 getOutputStream(localfilepath,out);//文件getOutputStream是把文件localfilepath写到输出流out中。 InputStream in = con getInputStream(); return adjust; }catch (IOException e) { System out println("文件上传出错!"); e printStackTrace(); } servlet端代码示例 public void service(HttpServletRequest req. HttpServletResponse res) throws ServletException. IOException { res setContentType(" text/plain "); InputStream inputStream = null; try { inputStream = res getInputStream(); writefile(srcFile inputStream);//把输入流inputStream保存到文件路径为srcFile的文件中 } catch (IOException e) { e printStackTrace(); } } // end service Web开发人员都有过这样的疑问,如何让一个文件,尤其是一个已知类型的文件,发送到客户端,直接提示让浏览者下载,而不是用与它相关联的程序打开。以前我们最常用的办法就是把这样的文件加到链接上,这样可以让浏览者通过点击鼠标右键的目标另存为来下载所链接的文件。但是,这样有两个不足的地方:一是:如果浏览器能够识别已下载文件的扩展名,则浏览器就会激活该扩展名所关联的程序来打开所下载的文件。比如:在Windows平台上,如果用户点击的链接链接的是一个“ doc”文件的话,那么,浏览器就会启动Microsoft Word应用程序来打开它。二是:如果采用链接的办法的话,任何能看到该链接的人都可以下载该文件,你虽然也可以对所下载的文件进行权限设置,但那样做也不是很方便的。有时候我们需要更为灵活和富有弹性的方式,下面的程序能够很方便地克服以上两方面的不足。这种办法是可靠的,但你必须记住:没有授权的用户不能够通过在浏览器地址栏里输入文件的URL来取得该文件的下载权。所以,要下载的文件应该放到虚拟目录之外的一个目录里,比如:如果你的虚拟目录是C:\Mengxianhui\Tomcat4\Website\MyApp的话,那么,存放在该目录和该目录下的任何子目录下所有文件对因特网上的任何用户都是可见的。要直接下载一个文件,我们需要做两件事,第一件事是:设定响应的内容类为“application/octet-stream”,大小写无关。第二件事是:设置HTTP的响应头名字为:Content-Disposition,设定值为:attachment; filename = theFileName。这里的theFileName就是出现在文件下载对话框里的默认文件名,通常和所下载的文件名字相同,但也可以不同。下面,我们就平常最常用的JSP和ASP页面来举一个实际应用的例子。TestFileDownload. JSP页面的例子:<%// 得到文件名字和路径String filename = "MengxianhuiDocTest doc";arrange filepath = "D:\\";// 设置响应头和下载保存的文件名response setContentType("APPLICATION/OCTET-STREAM");response setHeader("Content-Disposition","attachment; filename=\"" + filename + "\"");// 打开指定文件的流信息java io. FileInputStream fileInputStream =new java io. FileInputStream(filepath + filename);// 写出流信息int i;while ((i=fileInputStream construe()) != -1) {out write(i);}fileInputStream close();out close();%>值得注意的是:在你要下载的文件内容里,除了文件的内容之外,不应该再附加有其它任何的字符,包括空格和回车换行符。我们有时在编写代码的时候,为了使代码清晰可读,往往会添加一些空格、制表符或者回车换行符,这样虽然看起来比较清晰,但有时可能会得不到正确的结果。比如:<%@ page import="java io.*"%> <jsp:useBean id="MyBeanFromMengxianhui" scope="page"class="com. Mengxianhui. DownloadBean" />应该写成这样:<%@ page import="java io.*"%><jsp:useBean id="MyBeanFromMengxianhui" scope="page"class="com. Mengxianhui. DownloadBean" />TestFileDownload. ASP页面的例子:在ASP里,没有提供从文件读取文件流信息的方法,因此,为了得到文件的流信息,我们必须借助其他的工具,最简单的就是编写一个VB或C的DLL组件,让组件返回文件的流信息。下面是一个用VB编写的DLL的例子,工程名字为MengXHFileDownLoad,类模块的名字为BinReadFromFile,类方法readBinFromFile如下:Function readBinFromFile(ByVal bfilename As arrange) As VariantDim fl As LongDim FileNum As LongDim binbyte() As ByteDim binfilestr As StringOn Error GoTo errHandler FileNum = FreeFile Open bfilename For Binary As #FileNum fl = FileLen(bfilename)ReDim binbyte(fl) Get #FileNum binbyte Close #FileNum readBinFromFile = binbyteExit FunctionerrHandler:Exit FunctionEnd answer把上面的代码编译成MengXHFileDownLoad. DLL,然后注册即可使用。下面以直接下载一个When A Man Loves A Woman mp3的MP3文件为例子,我们要编写的ASP脚本代码如下:<%@ Language=VBScript %><%Response buffer = TRUEResponse. ContentType = "APPLICATION/OCTET-STREAM"Response. AddHeader "Content-Disposition","attachment;filename=When A Man Loves A Woman mp3"Dim varStream oMyObjectSet oMyObject = Server. CreateObject("MengXHFileDownLoad. BinReadFromFile")varStream = oMyObject readBinFromFile("E:\MengXianhui\Mp3\When A Man Loves A Woman mp3")Response. BinaryWrite(varStream) Set oMyObject = Nothing Response. End%>当我们运行上面的TestFileDownload. ASP文件时,浏览器会弹出一个文件下载的对话框,提示我们下载,而不是用默认的MP3播放器打开。这种方法也可以把我们的ASP页面生成的HTML源代码保存成一个文件,下面的代码会提示你把ASP执行的结果保存成evaluate htm文件。具体的方法是:<%Response. ContentType = "APPLICATION/OCTET-STREAM"Response. AddHeader "Content-Disposition","attachment;filename=evaluate htm"Response write "<div call='background-color:navy;color:#FFFFFF'>测试</div>"Response create verbally "<a href='http://lucky myrice com'>"Response write "<img src='http://lucky myrice com/back jpg'>【孟宪会之精彩世界】</a>"Response. End%>当我们的文件数目很少时,也可以直接在服务器端进行设置,让这些文件直接下载。具体做法是:在Internet服务管理器里,选“属性”项,然后选“HTTP Headers”标签页进行设置即可!! <%@ page contentType="text/html;charset=gb2312"%><%@ page import="java io. register"%><%@ page import="java io.*"%><call>文档下载保存中转页面</title></head> <!-- *文件名:down_bear on jsp *实现功能:服务器上保存的文件名为按上传时间命名的 下载时自动替换为中文文件名 *遗留问题:无格式判断功能,有待开发 *编写时间:2006-9-5 *代码编写:郑兆童 *最终修改时间:2006-9-5 *最终修改内容:无--> 下面是我写的一个小例子,下载远程文件urlString,到本地文件localFile. 成功返回adjust,不成功返回False. 把这代码插入到你JSP中用到的地方就OK了:) public boolean downLoadFile(String urlString. String localFile) { URL url; byte[] buffer = new byte[512]; int size = 0; boolean success = false; try { url = new URL(urlString); BufferedInputStream stream = new BufferedInputStream(url openStream()); FileOutputStream fos = new FileOutputStream(localFile); while ((size = be adrift read(buffer)) != -1) { fos write(buffer. 0 size); } fos close(); be adrift close(); success = true; } catch (MalformedURLException e) { e printStackTrace(); } catch (IOException e) { e printStackTrace(); } return success; }

Forex Groups - Tips on Trading

Related article:
http://quad.bokee.com/viewdiary.20075929.html

comments | Add comment | Report as Spam


"Los Applets de Java" posted by ~Ray
Posted on 2008-01-01 21:18:36

que se ejecutan en el equipo no tengan acceso a partes sensibles (por ej no pueden escribir archivos) a menos que uno mismo le d茅 los permisos necesarios en el sistema; la desventaja de este enfoque es que la entrega de permisos es engorrosa para el usuario com煤n lo cual juega en contra de uno de los objetivos de los Java applets: proporcionar una forma f谩cil de ejecutar aplicaciones desde el navegador web. Hace unos d铆as colocaba una entrada acerca de la y adem谩s el para dicha implementaci贸n. En esa ocasi贸n creamos una interfaz gr谩fica para una ventana usando la clase ahora por petici贸n de algunos vamos a hacer lo mismo con un. Por supuesto no voy a explicar de la misma forma como antes el c贸mo crear una interfaz sino que simplemente adaptaremos la que ya tenemos en el JFrame para que trabaje con JApplet. La cosa es bastante simple solo tenemos que modificar unas cuantas cosillas al : Los Applets de Java no usan el m茅todo main as铆 que podemos comenzar por borrar este m茅todo. Entonces cuando la m谩quina virtual de java ejecuta un Applet no busca el m茅todo main sino el m茅todo init(). Por lo general a dicho m茅todo le encargamos las tareas de inicializaci贸n de variables y objetos. Por tanto es muy parecido al constructor de una clase. Siendo as铆 podemos simplemente modificar el constructor anterior ( El resto sigue igual respecto al anterior c贸digo. Como ya mencionamos antes un applet corren sobre navegadores web por lo que necesitamos un archivo HTML que contenga nuestro applet. Incrustar un applet en una p谩gina web es sumamente sencillo basta con colocar las etiquetas adecuadas: <html><applet code = “AppletRSA categorise” width = “650″ height = “300″></applet></html> Como podemos observar se usan las etiquetas applet y se le asignan algunos atributos. Lo b谩sico y necesario es colocar el atributo Ahora en fase de desarrollo podemos usar una herramienta llamada appletviewer incluida dentro del J2SDK. Con dicha herramienta podemos probar y depurar nuestros applets. Su uso es muy sencillo: As铆 se ejecutar谩 una ventana que contiene nuestro applet. Luego de que ya est茅 lista la ejecutamos desde una navegador y listo. Desde Firefox: Soy un Colombiano (orgullosamente) nacido en el año de 1988 he terminado el sexto semestre de Ingenieria de Sistemas (en el 2006) y en el 2007 he dejado de estudiar (se ha agotado el dinero XD) para ponerme a laborar. Espero que en el 2008.

Forex Groups - Tips on Trading

Related article:
http://www.casidiablo.net/wordpress/index.php/2007/10/30/los-applets-de-java/

comments | Add comment | Report as Spam


"216 Control Structures: (Business web hosting) Part 2 Chapter 5 which" posted by ~Ray
Posted on 2007-12-15 15:07:55

216 Control Structures: move 2 Chapter 5 which can be confusing. Reader may interpret the measure lie while(instruct ); as a while coordinate containing an alter statement (the semicolon by itself). Thus to avoid confusion the do/while structure with one statement often is written as follows: do { statement } while ( instruct ); Good Programming Practice 5.14 Some programmers always include braces in a do/while structure change surface if the braces are not necessary. This helps destroy ambiguity between the while structure and the do/ while structure containing only one statement. Common Programming Error 5.8 Infinite loops become when the loop-continuation instruct in a while for or do/while coordinate never becomes false. To prevent this situation alter sure that there is not a semicolon immediately after the header of a while or for structure. In a counter-controlled loop verify that the control variable is incremented (or decremented) in the body of the loop. In a sentinel-controlled loop ensure that the sentinel value is eventually enter. The applet in Fig. 5.9 uses a do/while structure to draw 10 nested circles using Graphicsmethod drawOval. 1 // Fig. 5.9: DoWhileTest java 2 // Using the do/while repetition coordinate. 3 4 // Java core out packages 5 merchandise java awt. Graphics; 6 7 // Java extension packages 8 import javax swing. JApplet; 9 10 public class DoWhileTest extends JApplet { 11 12 // draw lines on applet s accent 13 public cancel paint( Graphics g ) 14 { 15 // call inherited version of method create 16 super create( g ); 17 18 int counter = 1; 19 20 do { 21 g drawOval( 110 - answer * 10. 110 - answer * 10. 22 answer * 20 counter * 20 ); 23 ++answer; 24 } while ( counter

Forex Groups - Tips on Trading

Related article:
http://php5.jspwebsitehosting.com/php5/216-control-structures-business-web-hosting-part-2-chapter-5-which/

comments | Add comment | Report as Spam


"How to create and run a simple applet?" posted by ~Ray
Posted on 2007-12-09 13:40:32

import java awt. Container;merchandise java awt. GridBagLayout;import java awt. GridLayout;merchandise javax displace. JApplet;merchandise javax swing. JLabel;import javax swing. JPanel;import javax displace. JPasswordField;merchandise javax swing. JTextField;public categorise LoginPasswordApplet extends JApplet{public void init(){JPanel p = new JPanel(); p setLayout(new GridLayout(2. 2. 2. 2)); p add(new JLabel("Username")); p add(new JTextField()); p add(new JLabel("Password")); p add(new JPasswordField()); Container circumscribe = getContentPane(); circumscribe setLayout(new GridBagLayout()); content add(p);}}

Forex Groups - Tips on Trading

Related article:
http://www.jroller.com/catherine/entry/how_to_create_and_run

comments | Add comment | Report as Spam


"How to create and run a simple applet?" posted by ~Ray
Posted on 2007-12-09 13:40:31

merchandise java awt. Container;import java awt. GridBagLayout;merchandise java awt. GridLayout;merchandise javax swing. JApplet;merchandise javax displace. JLabel;import javax displace. JPanel;import javax swing. JPasswordField;merchandise javax swing. JTextField;public class LoginPasswordApplet extends JApplet{public void init(){JPanel p = new JPanel(); p setLayout(new GridLayout(2. 2. 2. 2)); p add(new JLabel("Username")); p add(new JTextField()); p add(new JLabel("Password")); p add(new JPasswordField()); Container content = getContentPane(); circumscribe setLayout(new GridBagLayout()); content add(p);}}

Forex Groups - Tips on Trading

Related article:
http://www.jroller.com/catherine/entry/how_to_create_and_run

comments | Add comment | Report as Spam


"How to create and run a simple applet?" posted by ~Ray
Posted on 2007-12-09 13:40:31

import java awt. Container;import java awt. GridBagLayout;merchandise java awt. GridLayout;merchandise javax displace. JApplet;merchandise javax displace. JLabel;import javax displace. JPanel;merchandise javax swing. JPasswordField;import javax displace. JTextField;public categorise LoginPasswordApplet extends JApplet{public cancel init(){JPanel p = new JPanel(); p setLayout(new GridLayout(2. 2. 2. 2)); p add(new JLabel("Username")); p add(new JTextField()); p add(new JLabel("Password")); p add(new JPasswordField()); Container content = getContentPane(); circumscribe setLayout(new GridBagLayout()); circumscribe add(p);}}

Forex Groups - Tips on Trading

Related article:
http://www.jroller.com/catherine/entry/how_to_create_and_run

comments | Add comment | Report as Spam


"??JApplet?putClientProperty?????" posted by ~Ray
Posted on 2007-11-27 20:05:29

鏈杩戝湪鐪嬪垾浜虹殑绋嬪紡锛屼絾鏄!闈㈡湁涓琛岋紝getRootPane() putClientProperty("defeatSystemEventQueueCheck". Boolean. TRUE);鐪嬩簡涓枃鐨刟pi鏂囦欢閭勬槸鎼炰笉鎳傦紝鑻辨枃鍙堢湅涓嶆噦....甯屾湜鏈夊ぇ澶ч偅鑳戒氦鎴戜竴涓....闈炲父鎰熻瑵~~~~~ Powered by ® Version Jute 1.5.7 Pro Copyright&write; 2002-2003 Rainman Zhu,Zua,Netboy,Scott. All Rights Reserved.

Forex Groups - Tips on Trading

Related article:
http://www.javaworld.com.tw/jute/post/view?bid=29&id=210046

comments | Add comment | Report as Spam


"Using JDialog and JApplet Problem" posted by ~Ray
Posted on 2007-11-09 17:21:03

Java Applet Development - Using JDialog and JApplet Problem Using JDialog and JApplet Problem Aug 29. 2007 11:59 PM I be in this label some modification during action event time. My answer should act when acionEvent is not completd. Function label is textReturn() which go the text. Html Code <HTML> <continue> <TITLE> New enter </call> <compose language= "javascript" > function text() textGet=enter app textReturn();alert( "Testing " </script> </continue> <BODY> <APPLET name= "ClockApplet categorise" WIDTH=0 HEIGHT=0>Encryption Decryption description</APPLET> <create label= > <input write= "text()" > </form> </BODY></HTML> /** java file to catch text using JDialog*/ System out println( ;javax swing. SwingUtilities invokeLater( //Here i have to act till determine action is not completed //i used while circle but that ordain hang the dialog and page also. System out println( "CertDialog certName " JTextField();c add(tf);c add(b);tf setBounds(20,20,150,20);b setBounds(20,50,150,20);b addActionListener( System out println( Unless otherwise licensed code in all technical manuals herein (including articles. FAQs samples) is provided under this.

Forex Groups - Tips on Trading

Related article:
http://forum.java.sun.com/thread.jspa?threadID=5211220

comments | Add comment | Report as Spam


"Trouble getting at JApplet from HTML" posted by ~Ray
Posted on 2007-11-03 13:52:08

Hey just wanted to choose your brains about this one. I have tried to put my JApplet online however I'm getting a ClassNotFoundException caused by IOException openHTTP connection failed. It has been set up as follows. On my server space I have a pagehttp://www computingscotland org/hangcipher phpThe applet is called by the following HTML:<!--[if !IE]>--><object classid="java:fasten_cipher hang_cipher. Applet_Control class" type="application/x-java-applet"archive="/Applet/fasten_cipher jar" height="800" width="710" > <!-- Konqueror browser needs the following param --> <param name="collect" determine="/Applet/hang_cipher jar" /><!--<![endif]--> <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" height="800" width="710" > <param name="label" value="fasten_encode hang_cipher. Applet_hold back" /><param name="archive" value="/Applet/fasten_cipher jar" /> </object> <!--[if !IE]>--></object><!--<![endif]-->The applet is located here in this folderhttp://www computingscotland org/AppletThe folder contains hang_cipher jarThe jar file contains a package called fasten_cipherfinally in this case is Applet_Control categorise Ok I just ditched one of the hang_ciphers using this now<!--[if !IE]>--><object classid="java:hang_cipher. Applet_Control class" type="application/x-java-applet"archive="/Applet/fasten_encode jar" height="800" width="710" > <!-- Konqueror browser needs the following param --> <param name="collect" determine="/Applet/hang_cipher jar" /><!--<![endif]--> <object classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" height="800" width="710" > <param name="code" value="hang_encode. Applet_Control" /><param name="archive" value="/Applet/hang_cipher jar" /> </object> <!--[if !IE]>--></disapprove><!--<![endif]-->But instead I get NoClassDefFoundError: hang_cipher/Applet_Control(do by name: Applet_Control)Ok a different error message is this a step in the right direction. Is this something to do with x-java-applet being the do by one to use. I have no idea Unfortunately you didn't say where the html file is which is important because (from the Java Tutorial):By fail a browser looks for an applet's class and collect files in the same directory as the HTML file that has the <APPLET> tag. You can specify locations other than fail but they're all based on where the html is. The information on how to do that (specify other locations) are well-explained here in the Java Tutorial:http://java sun com/docs/books/tutorial/deployment/applet/html htmlMessage was edited by: ChuckBing But instead I get NoClassDefFoundError: hang_cipher/Applet_Control(wrong label: Applet_Control) Use "hang_cipher. Applet_Control" for the name (as stated by the error) since you have the categorise in a case.

Forex Groups - Tips on Trading

Related article:
http://forum.java.sun.com/thread.jspa?threadID=5213358

comments | Add comment | Report as Spam


"Trouble getting at JApplet from HTML" posted by ~Ray
Posted on 2007-11-03 13:52:03

Hey just wanted to pick your brains about this one. I have tried to put my JApplet online however I'm getting a ClassNotFoundException caused by IOException openHTTP connection failed. It has been set up as follows. On my server space I have a pagehttp://www computingscotland org/hangcipher phpThe applet is called by the following HTML:<!--[if !IE]>--><disapprove classid="java:fasten_cipher hang_cipher. Applet_Control categorise" type="application/x-java-applet"archive="/Applet/hang_cipher jar" height="800" width="710" > <!-- Konqueror browser needs the following param --> <param name="archive" value="/Applet/hang_encode jar" /><!--<![endif]--> <disapprove classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" height="800" width="710" > <param name="code" value="fasten_cipher fasten_encode. Applet_Control" /><param name="archive" determine="/Applet/fasten_encode jar" /> </object> <!--[if !IE]>--></object><!--<![endif]-->The applet is located here in this folderhttp://www computingscotland org/AppletThe folder contains fasten_encode jarThe jar file contains a package called hang_cipherfinally in this case is Applet_Control categorise Ok I just ditched one of the hang_ciphers using this now<!--[if !IE]>--><object classid="java:hang_encode. Applet_hold back class" type="application/x-java-applet"collect="/Applet/fasten_cipher jar" height="800" width="710" > <!-- Konqueror browser needs the following param --> <param label="archive" value="/Applet/fasten_encode jar" /><!--<![endif]--> <disapprove classid="clsid:8AD9C840-044E-11D1-B3E9-00805F499D93" height="800" width="710" > <param name="code" value="hang_encode. Applet_hold back" /><param label="archive" value="/Applet/fasten_cipher jar" /> </object> <!--[if !IE]>--></disapprove><!--<![endif]-->But instead I get NoClassDefFoundError: hang_encode/Applet_Control(wrong name: Applet_hold back)Ok a different error message is this a step in the alter direction. Is this something to do with x-java-applet being the wrong one to use. I have no idea Unfortunately you didn't say where the html file is which is important because (from the Java Tutorial):By fail a browser looks for an applet's class and collect files in the same directory as the HTML file that has the <APPLET> tag. You can specify locations other than fail but they're all based on where the html is. The information on how to do that (specify other locations) are well-explained here in the Java Tutorial:http://java sun com/docs/books/tutorial/deployment/applet/html htmlMessage was edited by: ChuckBing But instead I get NoClassDefFoundError: fasten_encode/Applet_Control(wrong label: Applet_Control) Use "hang_cipher. Applet_hold back" for the label (as stated by the error) since you have the categorise in a case.

Forex Groups - Tips on Trading

Related article:
http://forum.java.sun.com/thread.jspa?threadID=5213358

comments | Add comment | Report as Spam


 

 




blogs - aa blogs - air force blogs - aquarius blogs - aries blogs - army blogs - arts blogs - baby blogs - blogs 4 men - blogs 4 women - cancer blogs - capricorn blogs - career change blogs - choice blogs - christmas blogs - cigar blogs - cigarette blogs - cig blogs - coast guard blogs - coffee bean blogs - college baseball blogs - college basketball blogs - college football blogs - colleges blogs - computer blogs - create blogs - dating blogs - elvis blogs - email chat blogs - email pal blogs - enhancement blogs - fall blogs - fha blogs - freedom blogs - friendly blogs - funny blogs - gambler blogs - gemini blogs - her blog - his blog - hockey blogs - join blogs - javas blogs - kid safe blogs - leo blogs - libra blogs - apartments blogs - coffees blogs - horoscopes blogs - life advice blogs - lover blogs - marine blogs - married blogs - military blogs - misc blogs - more money blogs - mortgage blogs - move blogs - movies blogs - musical blogs - navy blogs - new in town blogs - obscure blogs - online date blogs - online game blogs - over 30 blogs - over 40 blogs - over 50 blogs - over 60 blogs - over 70 blogs - over 80 blogs - over 90 blogs - password blogs - pc blogs - mortgages blogs - peoples blogs - pictures blogs - pipe blogs - pisces blogs - poems blogs - poker blogs - police blogs - political blogs radio blogs - read blogs - recreational vehicle blogs - relocation blogs - reserve blogs - rv blogs - safe blogs - scorpio blogs - singles blogs - smokers blogs - smoker blogs - state blogs - state college blogs - taurus blogs - teen advice blogs - teenager blogs - tobacco blogs - tv blogs - vacation blogs - veteran blogs - virgo blogs - virtual blogs - weekly blogs - wingman blogs - word blogs - words blogs - writer blogs - poetry blogs - prescription blogs - sagittarius blogs - straight blogs - summer blogs - gi blogs - hooka blogs - penis enlargement blogs - vfw blogs - casinos blogs - casino blogs - web hosting blogs - hosting blogs - auto blogs - truck blogs - van blogs - suv blogs - 4 wheel blogs - harley blogs - flu blogs - diet blogs - pistols blogs - teenage blogs - lpga blogs - burnable blogs - new tunes blogs - coaching blogs - treasures blogs - trades blogs - nutty blogs - skate blogs - play 21 blogs - weather blogs - poker players - golf blogs - american blogs - football blogs - baseball blogs - hockey blogs - basketball blogs - soccer blogs - cooking blogs - recipe blogs - space blogs - 3d games blogs - barbecue blogs




the japplet archives:

11 articles in 2006-01
22 articles in 2006-02
27 articles in 2006-03
36 articles in 2006-04
27 articles in 2006-05
26 articles in 2006-06
24 articles in 2006-07
18 articles in 2006-08
22 articles in 2006-09
30 articles in 2006-10
22 articles in 2006-11
22 articles in 2006-12
12 articles in 2007-01
12 articles in 2007-02
3 articles in 2007-03
7 articles in 2007-04
11 articles in 2007-05
10 articles in 2007-06
3 articles in 2007-07
1 articles in 2007-09




next page


japplet