ChinaUnix.net
相关文章推荐:

ActiveMQTopic demo

http://www.phpbb.com/admin_demo/

by solar - Solaris - 2003-08-15 12:31:15 阅读(788) 回复(1)

相关讨论

Java RMI demo-- Java RMI 示例 本文给出了一个Java RMI的示例,其中注册过程是使用Registry 本例子包含了共5个文件,分别是HelloClient,Hello,HelloServer,Configur,config.properti /*Hello.java*/ /* * Created on 2004-11-10 * */ package test.rmi; import java.rmi.Remote; import java.rmi.RemoteException; /** * @author dogcome * * 远程方法调用接口,定义远程调用方法 */ public interface Hello extends ...

by linux_wuliqiang - Java文档中心 - 2008-12-08 10:55:23 阅读(910) 回复(0)

%@ page language="java" import="java.util.*" pageEncoding="GBK"%> html> head> title>File Upload/title> /head> body> font size=5 color=#FF0000> b>文件上传----使用jspsmart upload组件/b> /font> br> form action="servlet/ServletUpload" method="post" enctype="multipart/form-data"> p> 文件名称: ...

by linux_wuliqiang - Java文档中心 - 2008-11-13 22:02:11 阅读(1275) 回复(0)

readProperties(String file) throws IOException { InputStream is=new FileInputStream(new File(file)); Properties properties= new Properties(); properties.load(is); for (Enumeration e = properties.keys(); e.hasMoreElements();) { String key = ((String)e.nextElement()).trim(); String value = properties.getProperty(key).trim(...

by odin2008 - Java文档中心 - 2008-08-04 15:58:45 阅读(834) 回复(0)

文件: xajax.rar 大小: 51KB 下载: 下载 本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/17267/showart_111705.html

by liu121027 - php文档中心 - 2006-05-12 13:41:03 阅读(608) 回复(0)

这是什么意思?是客户端开发工具吗?(从字面意思理解好像不是呀) 我打上后,显示了个不可编辑的对话框,name firstname lastname,里面没有值,怎么用呀 客户端用什么开发呢?

by nsqsmile - Informix - 2004-04-09 09:35:02 阅读(1911) 回复(2)

import javax.swing.*; import java.awt.event.*; public class demoRightMenu extends JFrame { JMenu fileMenu; JPopupMenu jPopupMenuOne; JMenuItem openFile,closeFile,exit;分别对每个按钮添加事件处理就OK了.. JRadioButtonMenuItem copyFile,pasteFile; ButtonGroup buttonGroupOne; public demoRightMenu(){ jPopupMenuOne = new JPopupMenu();//创建jPopupMenuOne对象 buttonGroupOne=new ButtonG...

by linux_wuliqiang - Java文档中心 - 2008-11-04 10:40:25 阅读(1140) 回复(0)

/** * Message.java * 负责信息的发送和接收 */ package qq.bean; import java.io.IOException; import java.net.DatagramPacket; import java.net.DatagramSocket; import java.net.InetAddress; import java.net.SocketException; import java.net.UnknownHostException; /** * @author wuliqiang * 用无连接的udp 发送 */ public class Message { private static int port; // 成员变量的初始化...

by linux_wuliqiang - Java文档中心 - 2008-11-02 14:19:15 阅读(1129) 回复(0)

本文并不具体讲述蓝牙的运行机制和JSR82的API结构,关于这些知识点,请参考本文的参考资料一节,这些参考资料会给你一个权威的精确的解释   实例代码   该程序包括3个java文件。一个是MIDlet,另外2个为服务端GUI和客户端GUI。该程序已经在wtk22模拟器和Nokia 6600,Nokia 6670两款手机上测试通过。 /* * ClientBox.java */ import java.io.DataInputStream; import java.io.DataOutputStream; import java.io.IOExc...

by linux_wuliqiang - Java文档中心 - 2008-10-25 11:43:02 阅读(990) 回复(0)

Example : Bitbake demo In bitbake/bin/bitbake options+argv ---> BBCooker() [instance class object] --->call BBCooker.cook function param is options and argv instance BBConfiguration class with options param go cook(BBConfiguration object,argv) function [BBConfiguration class ]:initial a attr dict {'cmd':'value'} gointo cookfunction() { set bitbake cmd value init a data class...

by linuxGentoo - Python文档中心 - 2007-09-27 13:18:59 阅读(1245) 回复(0)

文件: DotLuceneSearch_src.zip 大小: 363KB 下载: 下载 Online demo Download source including the pre-generated index and HTML documentation [link] DotLucene: excellent full-text search engine Can there be a full-text search coded on 37 lines? Well, I am going to cheat a bit and use DotLucene for the dirty work. DotLucene is a .NET port of Jakarta Lucene search engine maintained by Georg...

by xinyu2006 - 网络技术文档中心 - 2007-06-27 16:01:39 阅读(700) 回复(0)