This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
max@antonov :tmp: 19:24:57 [0] $ javap -c Ber | |
Compiled from "Ber.java" | |
class Ber { | |
Ber(); | |
Code: | |
0: aload_0 | |
1: invokespecial #1 // Method java/lang/Object."<init>":()V | |
4: return |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private PreparedStatement getPreparedCategoryQuery() { | |
if (categoryPreparedQuery == null) { | |
try { | |
categoryPreparedQuery = dbconn.prepareStatement("INSERT INTO category (code) values(?)"); | |
} catch (SQLException e) { | |
e.printStackTrace(); | |
} | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[java] 2017-03-25 19:24:01 | |
[java] Full thread dump Java HotSpot(TM) 64-Bit Server VM (25.65-b01 mixed mode): | |
[java] | |
[java] "ActiveMQ InactivityMonitor Worker" #117 daemon prio=5 os_prio=0 tid=0x00007fbc18c9f800 nid=0x30a0 waiting on condition [0x00007fbbf18e1000] | |
[java] java.lang.Thread.State: TIMED_WAITING (parking) | |
[java] at sun.misc.Unsafe.park(Native Method) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
max@antonov :~: 22:41:32 [0] $ cat Ti.java | |
class Ti{ | |
public static String a="test"; | |
public static String b="Yes"; | |
public static void main(String [] args){ | |
StringBuilder c = new StringBuilder(); | |
c.append(a); c.append(" "); c.append(b); | |
System.out.println(c); |