`
agoo20
  • 浏览: 38588 次
社区版块
存档分类
最新评论
文章列表
public class MoneyUtil {   /** 大写数字 */   private static final String[] NUMBERS = { "零", "壹", "贰", "叁", "肆", "伍", "陆",       "柒", "捌", "玖" };   /** 整数部分的单位 */   private static final String[] IUNIT = { ...
柱状图高级特性 BarRenderer3D renderer = new BarRenderer3D(); renderer.setBaseOutlinePaint(Color.BLACK); //设置 Wall 的颜色 renderer.setWallPaint(Color.gray); //设置每种水果代表的柱的颜色 renderer.setSeriesPaint(0, new Color(0, 0, 255)); renderer.setSeriesPaint(1, new Color(0, 100, 255)); renderer.setSeriesPaint(2, Color.GR ...
根据网络资料整理        >>>>1. 概述<<<<   1.1. 背景      在应用程序中添加日志记录总的来说基于三个目的:监视代码中变量的变化情况,周期性的记录到文件中供其他应用进行统计分析工作;跟踪代码运行时轨迹,作为日后审计的依据;担当集成开发环境中的调试器的作用,向文件或控制台打印代码的调试信息。      最普通的做法就是在代码中嵌入许多的打印语句,这些打印语句可以输出到控制台或文件中,比较好的做法就是构造一个日志操作类来封装此类操作,而不是让一系列的打印语句充斥了代码的主体。      1.2. Log4j简介       ...
 JavaScript简介      通过超文本(Hyper Text)和超媒体(Hyper Media)技术结合超链接(Hyper link)的链接功能将各 种信息组织成网络结构(web),构成网络文档(Document),实现Internet上的“漫游”。通过HTML符 号的描述就可以实现文字、表格、声音、图像、动画等多媒体信息的检索。    然而采用这种超链技术存在有一定的缺陷,那就是它只能提供一种静态的信息资源,缺少动态的 客户端与服务器端的交互。虽然可通过CGI(Common Gateway Interface)通用网关接口实现一定的交 互,但由于该方法编程较为复杂,因而在一段时间防碍 ...
1、判断a string是否是数字   public boolean isNumeric(String checkStr) {       try {            Integer.parseInt(checkStr);            return true; // Did not throw, must be a number        } catch (NumberFormatException err) {            return false; // Threw, So is not a number         }   }   2、判断char是否是数 ...
今天面试了一道题目:输入三个整数,如果输入的数不是0到100之间的,提示重新输入,直至正确为止,再找输入的三个数最大的那一个输出。这是我写的,大家有没有更好的方法。 import java.util.Scanner; public class OutTest {          public  int output(int a,int b,int c){          int temp=a;          if(b>a);          temp=b;          if(c>temp)          temp=c;          return tem ...
XXX架构设计说明书<o:p></o:p> (架构设计重点在于将系统分层并产生层次内的模块、阐明模块之间的关系) 一.  概述<o:p></o:p> 描述本文的参考依据、资料以及大概内容。<o:p></o:p> 二.  目的
1  Java排序算法    package com.cucu.test; /**  * @  * @version 1.0  */ public class Sort {   public void swap(int a[], int i, int j) {     int tmp = a[i];     a[i] = a[j];     a[j] = tmp;   }   public int partition(int a[], int low, int high) {     int pivot, p_pos, i;     p_pos = low;     pivot = a[p_ ...
import java.awt.image.BufferedImage; import java.io.File; import java.io.IOException; import javax.imageio.ImageIO;    public class ImageIOTest {      public static void main(String args[]) throws IOException {          File inputFile = new File("c:\\11.jpg");                   BufferedIma ...
import java.io.File; public class SpaceChecker {           public static void main(String[] args) {               File[] roots = File.listRoots();               for (File _file : roots) {                   System.out.println(_file.getPath());               //   System.out.println(_file.getName());   ...
试性不好,多记 public class GetPath {     public static void main(String[] args) {         GetPath test = new GetPath();         System.out.println(test.getPath());     }     public String getPath(){         return this.getClass().getResource("/").getPath();     } }
1 .在https://appfuse.dev.java.net/servlets/ProjectDocumentList上下载appfuse2.0 2 安装mysql5.0 3.到apache下载maven配置好path和MAVEN_HOME 4打开cmd 试运行mvn --version,看到版本号则maven安装成功 5在maven/conf/setttin.xml中加入<localRepository>d:/appfuse2.0</localRepository>其中d:/appfuse2.0为存放appfuse2.0的路径,供maven下载使用. 6 运行 mv ...
中国有很多精于编码的人,但是中国软件行业,尤其是网络应用开发方面误区很大,很难形成有规模的软件开发力量和产品能力,不但比美国差距甚远,和印 度相比也是颇有不如。这些问题不是在于中国程序员的智商和工作努力状况,也不是在于国家和民间对开发的投入程度,而是很大程度上,有一些对技术,对程序开 发,对项目设计方面的思想误区,这些误区,导致了软件行业的产品化能力不足,缺乏规模化和大型复用系统研发能力,可以说,改变认识误区,是解决软件行业小 作坊模式和个体英雄模式所带来的局限性的重要工作。 程序员是一种技术工作,在IT的发展中有相当重要的地位,从底层硬件通讯协议的建立,到数据传输层的处理,到操作 ...
/**  *Description:convert Oct to Dec  *Author:yemoo 2006.12.05   */   public   class  P38{       int  convertOct2Dec(String Oct){           int  result = 0 ;           int  power = 1 ;           for ...
/**  *Description:greatest common divisor  *Author:yemoo 2006.12.06   */   public   class  Pt32{      // 思路:辗转相除法       int  divisor1( int  m, int  n){     // 方法一:循环法           ...
Global site tag (gtag.js) - Google Analytics