首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴随便看看Java
package music;

import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Vector;
import javax.swing.JList;
import javax.swing.JOptionPane;
import music.MP3Player;
......................
阅读全部 | chzzzzz 贴于 2015年7月1日 11:47     hide bbsi
public void drawDiamond(int num){
        char[][] b = new char[num][num];
        if(oddNumber(num)){
            for(int i = 0;i <= num-1;i++){
                for(int j = 0;j <= num-1;j++){
                    if((i + j == num/2 )||(i + j == num + 1)||(i - j == num/2)||(j - i == num/2) ){
                        b[i][j] = '*';
                    }else{
                        b[i][j] = ' ';
                    }
                }
            }
......................
阅读全部 | zq1062787941 贴于 2015年5月24日 12:43     hide bbsi
public class UserDao implements UserDaoInterface {
private Connection conn;
public UserDao(Connection conn){
this.conn = conn;
}

public List<User> selectUserList() {
String sql = "select * from t_user";
PreparedStatement sta = null;
ResultSet rs = null;
try {
System.out.println(1);
......................
阅读全部 | 淡若晨风 贴于 2015年5月23日 22:23     hide bbsi
//岗位类别联动岗位等级
function chooseGwdj(){
var g001 = $('#g001').val();
var gwhtml;
if(g001=='glgwdj'){
gwhtml = "<zw:seledata id='g002' code='glgwdj' />";
}else if(g001=='jsgwdj'){
gwhtml = "<zw:seledata id='g002'  code='jsgwdj' />";
}else if(g001=='syjsgwdj'){
gwhtml = "<zw:seledata id='g002'  code='syjsgwdj'/>";
}else{
gwhtml = "<select id='g002'><option value=''>--请选择--</option></select>";
......................
阅读全部 | 心疼小小可爱 贴于 2015年4月24日 10:59     hide bbsi
//package Test8;

import java.awt.Color;
import java.awt.FlowLayout;
import java.awt.GridLayout;
import java.awt.event.MouseEvent;
import java.awt.event.MouseListener;

import javax.swing.JButton;
import javax.swing.JFrame;
import javax.swing.JOptionPane;
import javax.swing.JPanel;
......................
阅读全部 | WIHATOW 贴于 2015年3月5日 18:39     hide bbsi
/**
 * Provides a method to encode any string into a URL-safe
 * form.
 * Non-ASCII characters are first encoded as sequences of
 * two or three bytes, using the UTF-8 algorithm, before being
 * encoded as %HH escapes.
 * <p/>
 * Created: 17 April 1997
 * Author: Bert Bos <bert@w3.org>
 * <p/>
 * URLUTF8Encoder: http://www.w3.org/International/URLUTF8Encoder.java
 * <p/>
......................
阅读全部 | 日知己所无 贴于 2015年2月28日 23:12     hide bbsi
package com.fengyun.test;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;

public class Downloads {
private static FileInputStream fileInput;
public static void main(String[] args) throws Exception{
String sourcePate = "D:/new/1.txt";
String restPate1  = "D:/new/1(1).txt";
String restPate2  = "D:/new/1(2).txt";
......................
阅读全部 | 伪为君子 贴于 2014年10月27日 11:00     hide bbsi
/*
*此类计算圆的面积
*/

public class circle2 {
//声明圆的半径
private double radiu;

public double getRadiu() {
return radiu;
}

......................
阅读全部 | dzh151360980 贴于 2014年10月10日 22:51     hide bbsi
package QQ9_20;

import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.ObjectInputStream;
import java.io.ObjectOutputStream;
import java.io.Serializable;
import java.util.ArrayList;
import java.util.List;

......................
阅读全部 | taohappy 贴于 2014年9月20日 23:02     hide bbsi
//
public static boolean deleteDirectory(File path) {
if (path.exists()) {
File[] files = path.listFiles();
if (files == null) {
return true;
}
for (File file : files) {
if (file.isDirectory()) {
deleteDirectory(file);
} else {
file.delete();
......................
阅读全部 | 静夜思 贴于 2014年9月16日 17:51     hide bbsi
上一页 13 14 15 16 17 18 19 20 21 22 下一页