上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页
摘要: vcs-->Git-->add 还是remote来着,先和github关联起来。一搜一大把 在intelliJ自带的terminal当中。。 先要建立本地的git repository git init git add . //.代表全部 git commit 提交到本地 如果push不成功 则gi 阅读全文
posted @ 2018-03-24 19:45 vector11248 阅读(410) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2018-03-23 22:02 vector11248 阅读(1) 评论(0) 推荐(0) 编辑
摘要: InetAddress ip = InetAddress.getByName("www.baidu.com"); System.out.println("是否可达: "+ip.isReachable(2000)); System.out.println(ip.getHostAddress()); InetAddress local = In... 阅读全文
posted @ 2018-01-16 17:32 vector11248 阅读(120) 评论(0) 推荐(0) 编辑
摘要: 2017.12更新 windows和Mac通用。软件去官网下载安装即可。扫码打赏,支持一下啦。 阅读全文
posted @ 2018-01-10 16:48 vector11248 阅读(4617) 评论(0) 推荐(1) 编辑
摘要: <dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <!--jst 阅读全文
posted @ 2018-01-09 20:07 vector11248 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1.首先can not resolve <taglib uri = jstl/core>.....这个问题 是因为缺少jar包,在pom 当中导入依赖jar即可,taglib standard, javax servlet-api ,javax servlet jsp-jstl 2.显示${mess 阅读全文
posted @ 2018-01-05 17:45 vector11248 阅读(1558) 评论(0) 推荐(0) 编辑
摘要: 参考两个博客: 1.如何创建Spring MVC项目。https://www.jianshu.com/p/2101d176555b 2. 如何部署。http://blog.csdn.net/aa464971/article/details/78250259 阅读全文
posted @ 2017-12-25 22:13 vector11248 阅读(1998) 评论(0) 推荐(0) 编辑
摘要: class Solution { public static int[] x; public static int sum=0; public static char[][] board; public List> solveNQueens(int n) { x =new int[n]; for(int... 阅读全文
posted @ 2017-12-15 20:25 vector11248 阅读(122) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; import java.io.*; import java.math.*; public class Hello { public static int n; public static int[] x; public static int sum=0; public static void main(String[... 阅读全文
posted @ 2017-12-15 16:39 vector11248 阅读(157) 评论(0) 推荐(0) 编辑
摘要: import java.util.*; import java.io.*; import java.math.*; public class Hello { static int cnt =1; public static void main(String[] args) throws IOException { int n = 8; c... 阅读全文
posted @ 2017-12-15 12:46 vector11248 阅读(160) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 18 下一页