P18

  银行排队系统Java示例代码 文档

//demo.java import javax.swing.*; import javax.swing.border.BevelBorder; import javax.swing.border.Border;

superyyf 2013-06-03   1018   0
Java  
P

Core Java Volume II–Advanced Features, 8th Edition 文档

The revised edition of the classic Core Java™, Volume II—Advanced Features, covers advanced user-interface programming and the enterprise features of the Java SE 6 platform. Like Volume I (which covers the core language and library features), this volume has been updated for Java SE 6 and new coverage is highlighted throughout. All sample programs have been carefully crafted to illustrate the latest programming techniques, displaying best-practices solutions to the types of real-world problems professional developers encounter.<br> Volume II includes new sections on the StAX API, JDBC 4, compiler API, scripting framework, splash screen and tray APIs, and many other Java SE 6 enhancements. In this book, the authors focus on the more advanced features of the Java language, including complete coverage of <br> Streams and Files <br> Networking <br> Database programming <br> XML <br> JNDI and LDAP <br> Internationalization <br> Advanced GUI components <br>

ysp 2015-11-12   375   0
P

Java Enterprise in a Nutshell, 3rd Edition 文档

Nothing is as constant as change, and this is as true in enterprise computing as anywhere else. With the recent release of Java 2 Enterprise Edition 1.4, developers are being called on to add even greater, more complex levels of interconnectivity to their applications.<br> To do this, Java developers today need a clear understanding of how to apply the new APIs, use the latest open source Java tools, and learn the capabilities and pitfalls in Java 2 Enterprise Edition 1.4 -- so they can plan a technology and implementation strategy for new enterprise projects.

silentboy 2015-02-21   1829   0
P

张孝祥Java就业面试宝典 文档

Java基础部分:基础部分的顺序:基本语法,类相关的语法,内部类的语法,继承相关的语法,异常的语法,线程的语法,集合的语法,io 的语法,虚拟机方面的语法,其他。有些题来自网上搜集整理,有些题来自传智播客学员面试后的反馈,说真的,少数一些网上的面试题,我真怀疑其是否还有存在价值!

leron89757 2011-11-10   9091   0
P

Java EE API中英文对照版 文档

Java Platform Enterprise Edition, v 5.0 API Specifications。 Activation Framework 所知的 JavaBean 组件实现此接口,以找出请求这些组件执行的命令动词,并获取表示这些组件要操作的数据的 DataHandler。不实现此接口的 JavaBean 也同样可以使用。这类命令可以使用 Externalizable 接口或特定于应用程序的方法来获取数据。用请求处理的动词和描述将要操作的数据的 DataHandler 来初始化 Command。注:调用者为 DataHandler 传递 null 值是可以接受的。

潜意识 2015-08-15   221   0

java插入排序算法 代码段

array[j] = insertedElem; break; } } } // =======以下是java.util.Arrays的插入排序算法的实现 /* * 该算法看起来比较简洁一j点,有点像冒泡算法。

en9 2014-12-30   1874   0

Java抽取照片的元数据信息 代码段

1还是做了一些更改,包括API的实现。关于V2.3.1版本的元数据提取可以参考我之前写的文章: Java读取图片EXIF信息 。 接下来看看如何使用Metadata-extractor类库来读取图

nc6433 2014-12-30   4448   0
Java  

Java 邮件发送代码 代码段

发送邮件 1、MailOperation.java 主要文件,邮件操作,发送 package main; import java.util.Date; import java.util.Properties;

pooi 2014-12-31   2040   0
Java   邮件  

java 32位md5加密类 代码段

import java.security.MessageDigest; import java.security.NoSuchAlgorithmException; public class Test

fp34 2014-12-31   7151   0
加密   MD5  

上传文件到ftp服务器java代码 代码段

commons.net.ftp.FTPClient; import java.io.FileInputStream; import java.io.IOException; public class FtpFileUpload

fg360 2015-01-04   2994   1
Java   FTP  

使用 java.awt.Robot 可以抓取屏幕 代码段

使用 java.awt.Robot 可以抓取屏幕 import java.awt.AWTException; import java.awt.Robot; import java.awt.Rectangle;

eex2 2015-01-06   2493   0
Java  

java程序中显示gif图片的代码 代码段

import java.awt.*; import java.awt.image.*; public class ImageCanvas extends Canvas { Image image; public

ew3y 2015-01-06   2758   0
Java  

使用 java.net.InterfaceAddress 获取网卡信息 代码段

import java.net.InterfaceAddress; import java.net.NetworkInterface; import java.net.SocketException;

fwe3 2015-01-08   1682   0

Java 使用NIO进行快速的文件拷贝的代码 代码段

public static void fileCopy( File in, File out ) throws IOException { FileChannel inChannel = new FileInputStream( in ).getChannel(); FileChannel outChannel = new FileOutputStream( out ).getChannel();

833p 2015-01-08   3426   0

Java 冒泡排序算法实现 代码段

public class BubbleSort { public static void sortiere(int[] x) { boolean unsortiert=true; int temp; while (unsortiert){ unsortiert = false; for (int i=0; i < x.length-1; i++) if (x[i] > x[i+1]) { temp

w43m 2015-01-08   1007   0
Java  

java实现验证码完整版 代码段

} } import java.awt.Color; import java.awt.Font; import java.awt.Graphics; import java.awt.image.BufferedImage;

cwf8 2015-01-11   11519   2
Java   验证码  

一个简单的Java MVC模式示例 代码段

control; //视图层 import java.io.IOException; import java.sql.SQLException; import java.util.List; import javax

engd 2015-01-16   3666   0
Java  

Java保留小数位的4种方法 代码段

4种方法,都是四舍五入,例,保留4位小数: import java.math.BigDecimal; import java.text.DecimalFormat; import java.text.NumberFormat;

em7 2015-01-22   2125   0
Java  

Java获取本机外网IP的代码 代码段

import java.io.BufferedReader; import java.io.InputStreamReader; import java.net.URL; public class Listip

ne3g 2015-01-26   3109   0
Java  

Java使用Spring发邮件 代码段

import org.springframework.beans.factory.annotation.Autowired; import org.springframework.mail.MailSender; import org.springframework.mail.SimpleMailMessage; import org.springframework.stereotype.Serv

yb25 2015-01-29   2371   0
Java   FTP  
1 2 3 4 5 6 7 8 9 10