用 java 对windows 注册表 进行编辑是一个比较困难的任务,因为java的平台无关性。但是java提供了Runtime类,它允许把原始的command命令直接发生送给OS,所以可以通过这个类来实现对 注册表 简单有效的管理。package info.itlanguageexpress.java;import java.io.*;publi……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1598浏览 618个赞
合并两个文本文件,并删除合并后重复的行import java.io.BufferedReader;import java.io.BufferedWriter;import java.io.File;import java.io.FileReader;import java.io.FileWriter;import java.io.Input……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1985浏览 2160个赞
java 求任何整数的因子public class T1 { /** * 分析这个数是不是质数 * @param num */ public static boolean isZhishu(int num){ switch (num) { case 1: case 2: case 3: return tru……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2671浏览 2288个赞
java输入半径在控制台用*号绘制圆import java.util.*;public class MathRound{ private int radius; public static void main(String[] args) { int dist; System.out.println("Inpu……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3041浏览 2871个赞
Java获取当前文件的路径String s1=request.getServletPath();//请求的文件的路径(只有项目根目录之后的部分路径)String s2=request.getSession().getServletContext().getRealPath(request.getRequestURI());//请求的文件的绝对路径 ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3202浏览 2826个赞
【java】jdom生成xml文件package com.rthb.test;import java.io.FileNotFoundException;import java.io.FileOutputStream;import java.io.IOException;import org.jdom.Document;import org.j……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1456浏览 1506个赞
java排序算法之桶排序package wzs.sort;import java.util.Arrays;//桶排序 (Bucket sort)或所谓的箱排序,是一个排序算法,工作的原理是将阵列分到有限数量的桶子里。//每个桶子再个别排序(有可能再使用别的排序算法或是以递回方式继续使用桶排序进行排序)。桶排序是鸽巢排序的一种归纳结果。//当要……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2541浏览 794个赞
Java解决约瑟夫问题package com.hongqishi;public class JosephQuestion { public static void main(String[] args) { for (int i = 2; i < 11; i++) { findMonitor(initPersons(i),i); ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1388浏览 2634个赞
java判断字符是否属于中文package wzs.arithmetics;// 判断字符是否属于中文public class IsChineseOrEnglish{ // GENERAL_PUNCTUATION 判断中文的“号 // CJK_SYMBOLS_AND_PUNCTUATION 判断中文的。号 // HALFW……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3061浏览 715个赞
java中获得jdbc结果集元数据转自:http://blog.csdn.net/kobe73er/article/details/8250825import java.sql.Connection;import java.sql.DriverManager;import java.sql.SQLException;import com.mysq……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2970浏览 2386个赞
java连接oracle数据库代码/** * 单独的java程序连接oracle数据库 * author:JavaAlpha * date :2012-12-3 12:02:44 */import java.sql.*;public class Test {public static void main(String[] args){S……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2023浏览 2611个赞
java分离链式法实现 HashTable JDK中的相应Hashtable中并没有使用LinkedList,而是使用自封装的Entry,显得使其更紧凑,且没有冗余。protected Entry(int hash, K key, V value, Entry<K,V>……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3105浏览 264个赞
java中全角半角字符的相互转换package com.whatycms.common.util;import org.apache.commons.lang.StringUtils;/** * <PRE> * 提供对字符串的全角->半角,半角->全角转换 * */public class BCConvert {……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3243浏览 2670个赞
JAVA中的JSON辅助类/** * 将bean的一组属性,输出成json结果 * * @param bean * @param exclude true为将参数中的属性排除在外,false为将参数中的属性输出成json * @param fieldNames * @return ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1897浏览 2996个赞
java生成缩略图类代码package com.whatycms.common.util;/** * 图片缩小算法,方形区域抽样 */import java.awt.image.BufferedImage;import java.io.File;import java.io.IOException;import javax.imagei……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3046浏览 2429个赞
java 发送邮件范例代码import java.util.Properties;import javax.mail.Message;import javax.mail.MessagingException;import javax.mail.Session;import javax.mail.Transport;import javax.……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2898浏览 2052个赞
java算法:折半查找(递归算法和非递归算法)来源:http://blog.csdn.net/undoner/article/details/8245870package Ceshi;public class biSearch { /** * @param args */ /* 折半查找--当查找表是有序表时,可采用折半查找; 基本……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2672浏览 1326个赞
java快速排序算法代码package Mypackage;public class QuickSort { public static void main(String[] args) { int[] arr = { 2, 5, 4, 3, 7, 0, 9, 1, 6, 8 }; quickSort(arr, 2, 7); for (……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2711浏览 762个赞
java堆排序算法代码来源:http://blog.csdn.net/adam_zs/article/details/8262920package com.arithmetic;//堆排序(Heapsort)是指利用堆这种数据结构所设计的一种排序算法。堆是一个近似完全二叉树的结构,//并同时满足堆性质:即子结点的键值或索引总是小于(或者大于)它的父……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1622浏览 2800个赞
java组合排序算法代码来源:http://blog.csdn.net/adam_zs/article/details/8262598package wzs.sort;//用1、2、3、4、5这五个数字,用java写一个main函数,打印出所有不同的排列,如:51234、41235等。 public class Test_wzs012{ ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3123浏览 1391个赞
java二分查找算法代码package wzs.seek;/** * 二分查找 * @author wWX154783 * */public class Test_wzs002{ public static void main(String[] args) { int[] intArray = ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1690浏览 578个赞
C语言基础:通过指针遍历数组#include <stdio.h>int main(void) { int values[5] = {1, 2, 3, 4, 5}; int counter; int *iptr; iptr = values; for (counter = 0; counter < 5;……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2175浏览 2679个赞
C语言基础:多重指针代码演示#include <stdio.h>int what_is_the_value(int ***ptr) { return(***ptr); }int main(void) { int *level_1, **level_2, ***level_3, value = 1001; leve……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2783浏览 1342个赞
C语言基础:输出二维数组#include <stdio.h>int main(void) { int row, column; float table[3][5] = {{1.0, 2.0, 3.0, 4.0, 5.0}, {6.0, 7.0, 8.0, 9.0, 10.0},……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3182浏览 1431个赞
C语言基础:遍历输出三维数组#include <stdio.h>int main(void) { int row, column, table; float values[2][3][5] = { {{1.0, 2.0, 3.0, 4.0, 5.0}, ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1802浏览 1511个赞
C语言基础:获取命令行传入的参数#include <stdio.h>int main (int argc, char **argv) { while (*argv) printf ("%s\n", *argv++);return 1; }……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3338浏览 1885个赞
将该段代码置于Onclose或自定的响应消息的函数中 TCHAR szPath[MAX_PATH]; // GetModuleFileName(NULL, szPath, MAX_PATH); //获取当前应用程序的全路径 //定义俩变量,具体的请参见msdn STARTUPINFO st……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1550浏览 2497个赞
C语言基础:atexit用法演示代码#include <stdio.h>#include <stdlib.h>void first(void) { printf("First function registered\n"); }void second(void) { printf(&q……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2129浏览 2026个赞
C语言基础:统计用户数组字符数量#include <stdio.h>int main (void) { long character_count = 0; getchar(); while (! feof(stdin)) { getchar(); character_count+……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1343浏览 299个赞
C语言基础:输出当前日期和时间#include <stdio.h>#include <time.h>int main (void) { time_t current_time; time(¤t_time); // Get the time in seconds; printf(&qu……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2574浏览 672个赞
单链表反转: 比如原链表为 head->1->2->3->NULL; 反转后:head->3->2->1->NULL; #include <stdio.h>#include <stdlib.h>typedef struct Node{ int data; struct Node *next;}*List;#defi……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2728浏览 1744个赞
C语言基础:延迟执行#include <stdio.h>#include <time.h>int main (void) { time_t current_time; time_t start_time; printf("About to delay 5 seconds\n");……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2446浏览 896个赞
C语言基础:通过difftime判断时间间隔延迟执行#include <stdio.h>#include <time.h>int main (void) { time_t start_time; time_t current_time; time(&start_time); printf(&……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2568浏览 1178个赞
C语言基础:获得当前日期和时间#include <stdio.h>#include <time.h>int main (void) { struct tm *gm_date; time_t seconds; time(&seconds); gm_date = gmtime(&seco……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1680浏览 1157个赞
C语言基础:计算儒略日#include <stdio.h>#include <time.h>int main(void) { time_t seconds; struct tm time_fields; time_fields.tm_mday = 4; time_fields.tm_mon = 7;……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2623浏览 1577个赞
C语言基础:localtime输出当前日期和时间#include <stdio.h>#include <time.h>int main (void) { struct tm *current_date; time_t seconds; time(&seconds); current_date……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3178浏览 705个赞
C语言基础:mktime用法演示,输出时间差#include <stdio.h>#include <time.h>int main(void) { time_t seconds; struct tm time_fields; time_fields.tm_mday = 4; time_fields.……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2643浏览 2155个赞
C语言基础:设置Timezone#include <stdio.h>#include <stdlib.h>#include <time.h>int main(void) { putenv("TZ=PST8PDT"); tzset(); printf("Curre……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2543浏览 785个赞
C语言基础:时间转换成字符串 strftime#include <stdio.h>#include <time.h>int main(void) { char buffer[128]; struct tm *datetime; time_t current_time; tzset(); tim……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1866浏览 1365个赞
C语言基础:timezone时区显示#include <stdio.h>#include <time.h>int main(void) { tzset(); printf("Difference between local and GMT is %d hours\n", timez……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2041浏览 2027个赞
C语言去掉字符串首尾的 空格 换行 回车/*去掉字符串首尾的 \x20 \r \n 字符by sincoder*/void clean_string(char *str){ char *start = str - 1; char *end = str; char *p = str; while(*p) { switch(*p)……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2983浏览 703个赞
C语言基础:timezone名字显示#include <stdio.h>#include <time.h>int main(void) { tzset(); printf("Current time zone is %s\n", tzname[0]); if (tzname[1]) ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 3107浏览 155个赞
C语言基础:文件拷贝#include <stdio.h>int main(void) { FILE *input, *output; int letter; if ((input = fopen("\\CONFIG.SYS", "r")) == NULL) printf……继续阅读 » 水墨上仙 5年前 (2021-03-14) 1592浏览 1063个赞
C语言变成:磁盘检测代码片段#include <stdio.h>#include <dos.h>#include <malloc.h>void main(void) { struct fatinfo fat; long sector, total_sectors; void *buffer;……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2340浏览 1269个赞
C语言基础:创建文件#include <stdio.h>#include <dos.h>#include <io.h>void main(void) { int handle; if ((handle = creatnew("NEW.DAT", 0)) == -1) ……继续阅读 » 水墨上仙 5年前 (2021-03-14) 2386浏览 1961个赞