Skip to content

Commit 926e85d

Browse files
committedSep 14, 2019
部分翻译没有加stackoverlow原文地址
1 parent c35cced commit 926e85d

8 files changed

+14
-116
lines changed
 

‎README.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,10 @@ stackoverflow-Java-top-qa
102102
* [如何产生一个随机的字母数字串作为 session 的唯一标识符](/contents/how-to-generate-a-random-alpha-numeric-string.md)
103103
* [Apache Camel是什么](/contents/what-exactly-is-apache-camel.md)
104104
* [通过对象属性对常规对象的ArrayList进行排序](/contents/sort-arraylist-of-custom-objects-by-property.md)
105-
105+
* [为Eclipse自动代码格式化设置行的最大长度?](/contents/Eclipse-set-maximun-line-length-for-auto-formatting.md)
106+
* [加载JNI共享库失败(JDK)](/contents/failed-to-load-the-JNI-shared-library(JDK).md)
107+
* [如何对Java class文件进行反编译](/contents/how-do-i-decompile-java-class-files.md)
108+
* [如何在classpath中设置多个jar包](/contents/setting-multiple-jars-in-java-classpath.md)
106109

107110
> 网络
108111
@@ -134,18 +137,14 @@ stackoverflow-Java-top-qa
134137
- [Why is executing Java code in comments with certain Unicode characters allowed?](http://stackoverflow.com/questions/30727515/why-is-executing-java-code-in-comments-with-certain-unicode-characters-allowed)
135138
- [Fastest way to determine if an integer's square root is an integer](http://stackoverflow.com/questions/295579/fastest-way-to-determine-if-an-integers-square-root-is-an-integer)
136139
- [How to fix: Unsupported major.minor version 51.0 error?](http://stackoverflow.com/questions/10382929/how-to-fix-unsupported-major-minor-version-51-0-error)
137-
- [Failed to load the JNI shared Library (JDK)](http://stackoverflow.com/questions/7352493/failed-to-load-the-jni-shared-library-jdk)
138140
- [Access restriction on class due to restriction on required library rt.jar?](http://stackoverflow.com/questions/860187/access-restriction-on-class-due-to-restriction-on-required-library-rt-jar)
139141
- [How do I discover memory usage of my application in Android?](http://stackoverflow.com/questions/2298208/how-do-i-discover-memory-usage-of-my-application-in-android)
140142
- [Uncatchable ChuckNorrisException](http://stackoverflow.com/questions/13883166/uncatchable-chucknorrisexception)
141143
- [Can I add jars to maven 2 build classpath without installing them?](http://stackoverflow.com/questions/364114/can-i-add-jars-to-maven-2-build-classpath-without-installing-them)
142144
- [Update Eclipse with Android development tools v. 23](http://stackoverflow.com/questions/24437564/update-eclipse-with-android-development-tools-v-23)
143-
- [Setting multiple jars in java classpath](http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath)
144145
- [What is the Java equivalent for LINQ?](http://stackoverflow.com/questions/1217228/what-is-the-java-equivalent-for-linq)
145146
- [Hibernate hbm2ddl.auto possible values and what they do?](http://stackoverflow.com/questions/438146/hibernate-hbm2ddl-auto-possible-values-and-what-they-do)
146147
- [decompiling DEX into Java sourcecode](http://stackoverflow.com/questions/1249973/decompiling-dex-into-java-sourcecode)
147-
- [Eclipse: Set maximum line length for auto formatting?](http://stackoverflow.com/questions/3697287/eclipse-set-maximum-line-length-for-auto-formatting)
148-
- [How do I “decompile” Java class files?](http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files)
149148
- [Useful Eclipse Java Code Templates [closed]](http://stackoverflow.com/questions/1028858/useful-eclipse-java-code-templates)
150149
- [How to call SOAP web service in Android](http://stackoverflow.com/questions/297586/how-to-call-soap-web-service-in-android)
151150

Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
为自动代码调整设置最大的行数?
22
问题:我正在学习Java。如果我在Eclipse Helios里使用ctrl+shift+f的组合键,它会自动调整我的代码。一定程度下,它会改变行数。我想增加行数的最大值。应该怎么做?
33

4-
回答,在偏好设置里,分别点击Java->Code Style->Fomatter->edit,在菜单栏Line Wrapping下会有行的宽度选择(Maximun line width).你将需要编辑你的代码轮廓。
4+
回答,在偏好设置里,分别点击Java->Code Style->Fomatter->edit,在菜单栏Line Wrapping下会有行的宽度选择(Maximun line width).你将需要编辑你的代码轮廓。
5+
6+
stackoverflow原址:http://stackoverflow.com/questions/3697287/eclipse-set-maximum-line-length-for-auto-formatting

‎contents/failed-to-load-the-JNI-shared-library(JDK).md

+2
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,6 @@ Failed to load the JNI shared library "C:/JDK/bin/client/jvm.dll"`.
1414
·64位的Java
1515
·64位的Eclipse
1616

17+
- stackoverflow原址:
18+
http://stackoverflow.com/questions/7352493/failed-to-load-the-jni-shared-library-jdk
1719

‎contents/how-do-i-decompile-java-class-files.md

+2
Original file line numberDiff line numberDiff line change
@@ -63,3 +63,5 @@ JAD
6363

6464
JD-GUI真的很棒。你可以打开一个jar文件并浏览代码,就好像正在使用IDE一样。好东西。
6565

66+
### 原文链接
67+
http://stackoverflow.com/questions/272535/how-do-i-decompile-java-class-files

‎contents/setting-multiple-jars-in-java-classpath.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,6 @@ Unix平台与Windows平台基本一样,除了使用冒号 `:` 替代分号 `;`
3535

3636
在类加载进程中,通配符的扩展在早期完成,优先于程序main函数的调用,而不是在其后。每个包含通配符的类路径都被替换为所在目录下所有jar包的序列。例如,如果目录`foo`包含`a.jar``b.jar`以及`c.jar`,因此类路径`foo/*`被扩展为`foo/a.jar;foo/b.jar;foo/c.jar`,并且以上字符串被作为系统属性`java.class.path`的值。
3737

38-
环境变量`CLASSPATH`与命令行选项-classpath或者-cp并没有什么不同。也就是说,通配符既可以应用于命令行`-classpath/-cp`选项中,也可以应用于环境变量`CLASSPATH`中。
38+
环境变量`CLASSPATH`与命令行选项-classpath或者-cp并没有什么不同。也就是说,通配符既可以应用于命令行`-classpath/-cp`选项中,也可以应用于环境变量`CLASSPATH`中。
39+
40+
stackoverflow原地址:http://stackoverflow.com/questions/219585/setting-multiple-jars-in-java-classpath

‎contents/what-the-equivalent-of-x=x++.md

-106
This file was deleted.

‎contents/why-does-this-go-into-an-infinite-loop

-2
This file was deleted.

‎备忘.md

-1
This file was deleted.

0 commit comments

Comments
 (0)
Please sign in to comment.