1
2
3
4
5
6
line = "#9999#calillemilla#11: ElQuerido92, theola3lanclosb, Abigaille19, myherolancelot, dzastin03, DECIJEZ, lostsoul1987, canderse, ktornbjerg, L1nc0ln, BigDumbFate,"
sp1 = line.split(":")[0]
sp2 = sp1.split(sep="#")
print(sp1)
print(sp2)
more>>

什么是类加载器 基本职责就是根据一个指定的类的名称,找到或者生成其对应的字节代码,然后从这些字节代码中定义出一个 Java 类,即 java.lang.Class类的一个实例 也可以加载图片等应用所需的资源 首先关注:java的内置类加载器的几种类型 启动类加载器(Bootstrap ClassLoader):这个类加载器是Java虚拟机本身的一部分,这个类将负责存放\lib 目录下的类。要注 ...
more>>

IO Java路径问题最终解决方案—可定位所有资源的相对路径寻址 用File.Seperator构造路径 // more… ResourceBundle读取配置文件 加载、链接与初始化 ClassLoader详解 // 深入分析ClassLoader 库 Guava 多线程 估算线程池的合理大小
more>>

http://mengkang.net/620.html?hmsr=toutiao.io&utm_medium=toutiao.io&utm_source=toutiao.io http://mccxj.github.io/blog/20130530_introduce-to-rest.html 我所理解的restful web api(设计篇) netty restful s ...
more>>

原文链接:老于聊架构

有关架构的书:
面向模式的软件架构、程序员必读之软件架构、企业应用架构模式、 一线架构师实践指南

以始为终的架构设计:
—— 满足或引导客户价值的挖掘和表达。

more>>

.gitignore

  1. 如何忽略所有文件除了某些文件
1
2
3
4
5
6
7
8
9
10
11
# Ignore everything
*
# But not these files...
!.gitignore
!script.pl
!template.latex
# etc...
# ...even if they are in subdirectories
!*/
more>>

问题

ItelliJ 重命名文件后git commit error的一个坑

I also faced the almost same situation, in my case I have created a file and added to git (using git add ), after adding to git I have renamed the file. While committing I got the same type error.

1
Error:error: pathspec 'app/src/main/java/blahblah/FooBar.java' did not match any file(s) known to git.

more>>