import java.util.Scanner; /** *@version 创建时间:2020/3/25 *类说明:字符串比较和搜索引擎 */ public class SouSuoYQ { public static void main(String[] args) { // TODO Auto-generated method stub int i; int choice;//选择 float money = 0;//总钱数 float n;//个数 String name = "王小川"; String pass = "wxc1314520"; String name1; String pass1; Scanner input = new Scanner(System.in); String num1[]; num1 = new String[]{"原子弹","无人机","航空母舰","导弹","枪支"}; String num; System.out.println("**************************"); System.out.println("**<<<<<<<暗网系统>>>>>>>**"); System.out.println("**************************"); System.out.println("友情提示:该系统是私人系统"); System.out.print("请输入用户名:"); name1 = input.next(); System.out.print("请输入秘钥:"); pass1 = input.next(); if(name1.
一、常见工具网站
1. 洋葱头代理浏览器:http://www.theonionrouter.com/projects/torbrowser.html.en#downloads
2. GITHUB地址:https://github.com/TheTorProject/gettorbrowser
二、技术博客 1. 纯洁的微笑计数博客
http://www.ityouknow.com/
2. 免费图标网址:
http://www.iconfont.cn/search/index?searchType=icon&q=%E8%AD%A6%E7%A4%BA&fromCollection=-1
3. springBoot例子
https://github.com/ityouknow/spring-boot-examples
4. https://blog.52itstyle.com/
5.
http://liuyue.ren/
6.
http://blog.720ui.com/
7.
http://blog.720ui.com/2018/java_interview_final/
8.
http://www.jiangxinlingdu.com/
9.
http://blog.itmyhome.com/
10.
https://blog.csdn.net/catoop/column/info/spring-boot
11.
https://www.jianshu.com/c/f0cf6eae1754
12.
https://wdk.pw/
13.
https://blog.csdn.net/rickiyeat
14.
https://blog.csdn.net/wo541075754
15.
https://blog.csdn.net/liaokailin/article/category/5765237
16.
http://blog.didispace.com/categories/Spring-Boot/
17.java从零开始
http://www.cnblogs.com/mafly/p/startJava.html
18.阿里开发手册
https://github.com/alibaba/p3c/blob/master/%E9%98%BF%E9%87%8C%E5%B7%B4%E5%B7%B4Java%E5%BC%80%E5%8F%91%E6%89%8B%E5%86%8C%EF%BC%88%E8%AF%A6%E5%B0%BD%E7%89%88%EF%BC%89.pdf
19.
http://bridgeforyou.cn/
20.服务端思维
http://blog.720ui.com/
21.
https://wenchao.ren/
22.PageHelper作者详细mybatis
https://blog.csdn.net/isea533/article/details/42102297
https://mybatis3.github.io/downloads.html
点赞 1 收藏 分享 文章举报 南莉熊 发布了18 篇原创文章 ·
获赞 7 ·
访问量 9163 私信 关注
try{
//代码区
}catch(Exception e){
//异常处理
}
代码区如果有错误,就会返回所写异常的处理。
首先要清楚,如果没有try的话,出现异常会导致程序崩溃。
而try则可以保证程序的正常运行下去,比如说:
try{
int i = 1/0;
}catch(Exception e){
……..
}
一个计算的话,如果除数为0,则会报错,如果没有try的话,程序直接崩溃。用try的话,则可以让程序运行下去,并且输出为什么出错!
try catch 是捕捉try部分的异常,当你没有try catch的时候,如果出现异常则程序报错,加上try catch,出现异常程序正常运行,只是把错误信息存储到Exception里,所以catch是用来提取异常信息的,你可以在Catch部分加上一句System.out.println(e.ToString());,如果出现异常可以把异常打印出来
Java的异常处理机制(try…catch…finally)
1 引子
try…catch…finally恐怕是大家再熟悉不过的语句了,而且感觉用起来也是很简单,逻辑上似乎也是很容易理解。不过,我亲自体验的“教训”告诉我,这个东西可不是想象中的那么简单、听话。不信?那你看看下面的代码,“猜猜”它执行后的结果会是什么?不要往后看答案、也不许执行代码看真正答案哦。如果你的答案是正确,那么这篇文章你就不用浪费时间看啦。
public class TestException { public TestException() { } boolean testEx() throws Exception { boolean ret = true; try { ret = testEx1(); } catch (Exception e) { System.out.println("testEx, catch exception"); ret = false; throw e; } finally { System.out.println("testEx, finally; return value="
最近搞的项目用到maven,在进行断点调试的时候总是报source not found,点击了”Edit Source Lookup Path”添加了工程也都无济于事 经过一番尝试,终于找到解决方法。
在一开始创建maven的debug的时候,就把资源添加进去,这样就能进行正常的debug了。
在run–》run configurations–>选中命令–》source–>add–>project–>勾选要
debug的项目,保存后再次debug就可以定位到源码了。
参考 洋葱头的专栏
[url=http://blog.csdn.net/ycdayan/article/details/32313265]eclipse在maven下的断点debug [/url] 点赞 收藏 分享 文章举报 javabaidu 发布了196 篇原创文章 ·
获赞 3 ·
访问量 3万+ 私信 关注
程序有时会报上面错误。有可能是下面几个原因:
1. 相应的dll文件没有加载。可将相应的dll文件拷贝到system32下;
2. 如果不行的话,检查你的jdk看看。如果电脑室64位的请用64位jdk。或者换个新版本jdk。我的就是这个原因。我将jdk有原来1.6换位1.7之后,问题解决!