Java代码
ldw598156412
这个作者很懒,什么都没留下…
展开
-
idea2019.3编译spring5.0.x报错
IDEA2019.3编译spring5.0.x报下面的错误,换成idea2019.2就没有问题了,有没有遇到同样问题的exception during working with external system: java.lang.AssertionError at org.jetbrains.plugins.gradle.service.project.BaseGradleProjec...原创 2019-12-05 11:30:38 · 3780 阅读 · 23 评论 -
attempted to return null from a method with a primitive return type (double)
Mybatis在执行select sum(*) from 时,如果返回为null,在Java程序中要配置Double类型的,XML文件<select id="getCpuSum" resultMap="job" resultType="Double"> select COALESCE(SUM(consumed_cpu),0) from job where owner_id=...原创 2018-12-24 15:25:42 · 381 阅读 · 0 评论 -
java list转树形
//树形实体public class ExtTreeEntity { private String id; private String parentId;//父节点 private String text;//树形显示的文本 private boolean leaf;//是否叶子节点 private List children; //TOTO getter/set原创 2015-09-30 10:38:03 · 1162 阅读 · 0 评论 -
JAVA根据IP地址获取详细的地域信息
package com.ll;import java.io.BufferedReader;import java.io.DataOutputStream;import java.io.IOException;import java.io.InputStreamReader;import java.io.UnsupportedEncodingException;import java.转载 2014-11-23 23:25:11 · 589 阅读 · 0 评论 -
字符串反转
import java.util.Stack;public class StringReverse { public static String reverse1(String s) { int length = s.length(); if (length return s; String left = s.substring(0, length / 2);转载 2014-09-23 21:02:23 · 398 阅读 · 0 评论 -
报号
有n个人围成一圈,顺序排号。从第一个人开始报数(从1到3报数),凡报到3的人退出圈子,问最后留下的是原来第几号的那位。 importjava.util.Scanner;public Test {public static void main(String[] args) { Scanner s = new Scanner(System.in); int转载 2014-09-23 21:16:12 · 564 阅读 · 0 评论 -
字符串第一个字母大写
//将this is a test转化为This Is A Test public class CharUp{ publicstatic void main(String[] args) { String str="this is a man"; char c[]=new char[str.length()]; str.getChars(0,str.len转载 2014-09-23 21:10:00 · 774 阅读 · 0 评论 -
线程终止典型方法
public classTestThreadCiycle implements Runnable {Stringname;booleanlive = true;publicTestThreadCiycle(String name) {super();this.name= name;}@Overridepublicvoid run() {i转载 2014-09-23 21:08:27 · 417 阅读 · 0 评论 -
钱的转换
/** * 数字金额大写转换,思想先写个完整的然后将如零拾替换成零 * 要用到正则表达式*/ public static String digitUppercase(doublen){ String fraction[] = {"角","分"}; String digit[] = { "零","壹", "贰", "叁转载 2014-09-23 21:04:35 · 471 阅读 · 0 评论 -
快速排序
public classQuickSort {/*** 快速排序* @param strDate* @param left* @param right*/public voidquickSort(String[] strDate,int left,int right){Stringmiddle,tempDate;inti,j;i=left;转载 2014-09-23 21:05:30 · 361 阅读 · 0 评论 -
去除所有空格
//去除所有空格importjava.util.Scanner;public classDislodgeBlank{ publicstatic void main(String[] args){Scannersc = new Scanner(System.in);Stringss = sc.nextLine();Strs = new Str(ss);s.eq();转载 2014-09-23 21:07:04 · 651 阅读 · 0 评论 -
双向链表
publicclassNode { private Eelement; //结点数据 private Nodenext; //上结点 private Nodeprevious; //下结点 privatestaticintsize=0; //链表长转载 2014-09-23 21:07:18 · 354 阅读 · 0 评论 -
杨辉三角形
打印出杨辉三角形(要求打印出10行如下图) 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 1 5 10 10 5 1 …………public class转载 2014-09-23 20:59:18 · 429 阅读 · 0 评论