Click here to Skip to main content
16,005,149 members
Home / Discussions / Java
   

Java

 
GeneralRe: Can you create a Windows desktop program with Java Pin
Richard MacCutchan2-Mar-19 21:32
mveRichard MacCutchan2-Mar-19 21:32 
GeneralRe: Can you create a Windows desktop program with Java Pin
Brian_TheLion3-Mar-19 19:51
Brian_TheLion3-Mar-19 19:51 
AnswerRe: Can you create a Windows desktop program with Java Pin
jschell23-Feb-19 10:50
jschell23-Feb-19 10:50 
QuestionJAVA terrier API Pin
Member 1180560717-Feb-19 2:12
Member 1180560717-Feb-19 2:12 
SuggestionRe: JAVA terrier API Pin
Richard MacCutchan17-Feb-19 2:55
mveRichard MacCutchan17-Feb-19 2:55 
QuestionServlet code protection [SOLVED] Pin
Valentinor11-Feb-19 2:09
Valentinor11-Feb-19 2:09 
AnswerRe: Servlet code protection Pin
Richard MacCutchan11-Feb-19 3:00
mveRichard MacCutchan11-Feb-19 3:00 
GeneralRe: Servlet code protection Pin
Valentinor13-Feb-19 1:43
Valentinor13-Feb-19 1:43 
AnswerRe: Servlet code protection Pin
Richard Deeming11-Feb-19 3:02
mveRichard Deeming11-Feb-19 3:02 
GeneralRe: Servlet code protection Pin
Valentinor13-Feb-19 1:46
Valentinor13-Feb-19 1:46 
GeneralRe: Servlet code protection Pin
jschell17-Feb-19 6:19
jschell17-Feb-19 6:19 
GeneralRe: Servlet code protection Pin
Valentinor17-Feb-19 10:45
Valentinor17-Feb-19 10:45 
QuestionJava project Pin
Member 1413367029-Jan-19 4:36
Member 1413367029-Jan-19 4:36 
AnswerRe: Java project Pin
Richard MacCutchan29-Jan-19 4:44
mveRichard MacCutchan29-Jan-19 4:44 
AnswerRe: Java project Pin
jschell2-Feb-19 6:18
jschell2-Feb-19 6:18 
QuestionJava Code too large Pin
mozum15-Jan-19 22:51
mozum15-Jan-19 22:51 
SuggestionRe: Java Code too large Pin
Richard MacCutchan15-Jan-19 23:04
mveRichard MacCutchan15-Jan-19 23:04 
GeneralRe: Java Code too large Pin
mozum15-Jan-19 23:28
mozum15-Jan-19 23:28 
GeneralRe: Java Code too large Pin
Richard MacCutchan15-Jan-19 23:36
mveRichard MacCutchan15-Jan-19 23:36 
GeneralRe: Java Code too large Pin
mozum15-Jan-19 23:54
mozum15-Jan-19 23:54 
GeneralRe: Java Code too large Pin
Richard MacCutchan16-Jan-19 0:12
mveRichard MacCutchan16-Jan-19 0:12 
AnswerRe: Java Code too large Pin
jschell26-Jan-19 7:05
jschell26-Jan-19 7:05 
Java does not allow a 'method' to be more than 64k byte codes (internal java compiled representation.)

So you have a method that is too large and you MUST break it into smaller methods. That would be the only possible solution.

In some cases if you are attempting to initialize static data, for example an array, list, etc, as a local variable you will get this error also because initialization is handled by the java compilers by creating a hidden method. Solution for that is to change how the initialization is done such as loading the data from a file.
QuestionServlet purpose Pin
Valentinor10-Jan-19 23:13
Valentinor10-Jan-19 23:13 
AnswerRe: Servlet purpose Pin
Richard MacCutchan10-Jan-19 23:17
mveRichard MacCutchan10-Jan-19 23:17 
GeneralRe: Servlet purpose Pin
Valentinor11-Jan-19 0:16
Valentinor11-Jan-19 0:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.