Tagged Questions
The stackoverflowerror tag has no wiki summary.
15
votes
4answers
190 views
Pattern.matches() gives StackOverflowError
I'm using java's Pattern.matches to match a block of data to a regex. The block of data can be a single line or multiple lines. The problem is that once my data becomes more than 15 lines (typically ...
10
votes
4answers
285 views
What does the C++ standard say about stack overflow?
I took a look at the draft C++0x standard, and as far as I can tell there is nothing about stack overflow in there. Searching for "stack overflow" yields no results, and searching for "stack" I've ...
8
votes
6answers
315 views
Why I'm getting StackOverflowError
public class Category {
private Category parentCategory;
private Set<Category> childCategories;
private String name;
public Category() {
childCategories = new ...
5
votes
2answers
320 views
Eclipse crashes every time I add a new xml file to my menu section - Android
My eclipse seems to crash every time with a Stackoverflow error every time I add an xml file to my Android project in the /res/menu section. Here's the error log that it generates, has anyone ...
4
votes
3answers
305 views
How to get full stack of StackOverflowError
When observing a StackOverflowError how to retrieve the full call stack?
Consider this simple example:
public class Overflow {
public Overflow() {
new Overflow();
}
public ...
4
votes
4answers
151 views
Getting StackOverFlowError in Java
This is program I am writing. I am getting a StackOverFlowError exception when I run it:
public class maininherit {
maininherit h = new maininherit() {
@Override
public void ...
3
votes
1answer
84 views
StackOverflowError when trying to print a stacktrace
I got the following stacktrace when trying to print a stacktrace to the console:
java.lang.StackOverflowError
at java.io.FileOutputStream.writeBytes(Native Method)
at ...
3
votes
2answers
140 views
Android (in Scala): StackOverflowError depends on when to start a thread?
I have this simple Activity (in Scala, imports ommited):
class TestActivity extends Activity {
private val TAG = "TestActivity"
private val mHandler = new Handler {
override def ...
3
votes
2answers
124 views
maven assembly throwing stackoverflowerror
Hi denizens of stackoverflow,
I am having an issue with maven, specifically with the assembly phase. I have a large multi-module legacy project that unfortunately has some circular references within ...
3
votes
1answer
168 views
Minesweeper program recursion error
I am creating a mine sweeper program in java for school, and am having trouble with the clearing of squares that don't have any mines next to them, the square is supposed to be disabled, and all ...
2
votes
2answers
30 views
RandomMove Method Tic Tac Toe Not Functional
I am working on creating a tic tac toe game that allows the user to play against a computer. When the user selects a button on the board, the AI will detect if there is a possible three combo. If ...
2
votes
2answers
286 views
java.lang.StackOverflowError while using a RegEx to Parse big strings
This is my Regex
((?:(?:'[^']*')|[^;])*)[;]
It tokenizes a string on semicolons. For example,
Hello world; I am having a problem; using regex;
Result is three strings
Hello world
I am having a ...
2
votes
4answers
178 views
Stackoverflow exception in java minesweeper game
I was trying to make a minesweeper game in Java, but I keep running into this error. This function sets the current square to clicked and any adjacent squares to be clicked and continues recursively. ...
2
votes
3answers
374 views
Haskell recursive list comprehension causes C Stack Overflow
So I'm making a list of prime numbers to help me learn haskell using simple trial division (no fancy stuff until I get better with the language). I'm trying to use the following code:
primes = 2 : [ ...
2
votes
3answers
139 views
How to let eclipse break on a stack overflow?
I get a stacktrace that indicates a stack overflow caused by a non-terminating program. However I don't know how to let the eclipse debugger break when this occurs.
I'd rather not post the stacktrace ...
2
votes
2answers
167 views
Objective-C call specific class method
I have a class that has this in the initializer:
@implementation BaseFooClass
-(id) init
{
if (self = [super init])
{
// initialize instance variables that always need to start ...
2
votes
2answers
1k views
Calling Intent.getStringExtra() throws StackOverflowError periodically
I have an android application that I am supporting and after calling one of the activities numerous time, it throws a stackoverflowerror when trying to get the extras from the intent. Here is the the ...
2
votes
2answers
899 views
SWT Table with SWT.VIRTUAL raises StackOverflowError
After recently installing Windows 7 Professional, I'm getting a strange problem removing a TableItem from a populated Table in SWT. It is specific to Windows 7 and to the SWT.VIRTUAL style constant ...
2
votes
9answers
26k views
1
vote
1answer
93 views
Quick fix for org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:467)
I've encountered the following problem with both Axis2 v1.6.1 and v1.6.2, when using lists:
java.lang.StackOverflowError:
org.apache.axis2.databinding.utils.BeanUtil.deserialize(BeanUtil.java:467)
...
1
vote
0answers
171 views
Android : GreenDroid-GoogleAPIs fails with StackOverflow Exception during Import
I just tried to Import the GreenDroid-Librarys for my new Android Application.
Now, I encounter a confusing Error. I first Import the GreenDroid-Core Library and everything is fine.
But when I, ...
1
vote
0answers
478 views
Unhandled event loop exception java.lang.StackOverflowError
I am getting Unhandled event loop exception java.lang.StackOverflowError when I open xml files in layout folder in eclipse
1
vote
0answers
196 views
Android: StartActivityForResult causes StackOverFlow Error
I have a gridView that displays some icons (in a Main Menu format) - Based on the Icon pressed I need to launch an activity. I am doing this using a switch statement.
It works fine for two of my ...
1
vote
5answers
208 views
Got stackoverflowerror when using quickSort, can I increase the stack and the heap?
Can I increase the stack and the heap in java? I'm using BlueJ.
========
EDIT:
Here is the code:
// ***** Quick-Sort Method *****
public static void quickSort(int[] data, int first, int n)
{
...
1
vote
2answers
202 views
Stackoverflow calling metaClass method on Map
This piece of code is causing a stackOverflow exception:
ISerializer serializer = buildSerializer(TestDataProvider.getAuthor());
ASObject result = (ASObject) serializer.serialize();
assert ...
1
vote
1answer
218 views
Inconsistent Quicksort StackOverflowError
I'm working on a quicksort problem for arrays of only increasing integers. The pivot choice in this routine is always the first element of the subarray (as dictated by the problem), and at a certain ...
1
vote
1answer
278 views
StackOverflowError when running my “Knight's Tour” (it's pretty much finished otherwise)
I'm trying to make a program that goes through all squares of a chessboard (size doesn't really matter, but for now it's 6x6) with a knight, called a "Knight's Tour" check it out on wiki.
The tour is ...
1
vote
3answers
147 views
Why do I get StackOverFlowError when trying to DFS this graph?
I am trying to write an algorithm that determines whether a graph is connected or not. I think my code is almost correct, although I keep getting StackOverFlowError. I personally think because there's ...
1
vote
4answers
257 views
Java endless recursion and StackOverflowError
Sorry, for probably a dumb question, I'm new to Java.
Is there a way to make an endless recursion in Java, somithing like:
public void sillyMethod()
{
System.out.println(i);
i++;
...
1
vote
3answers
1k views
Maven compilation: Failure executing javac
Here is an exception we get when trying to compile a freshly checked out code under Windows Server 2003 with Maven 2.2.1 and JDK 1.6.0_23. Several machines running Ubuntu with the same Maven and JDK ...
1
vote
3answers
315 views
Why does this simple Java bytecode cause a StackOverflow error?
I need to instrument native methods to make a simple static call before executing normally. Because the methods are native, I have to use the "setNativePrefix" feature and wrap the native methods with ...
1
vote
2answers
400 views
Java StackOverflowError while recursively building an array from a binary search tree
I'm trying to balance a BST by first building an array (inorder) and then rebuild the entire tree from my array.
I have:
public void toArray(E[] a) {
toArray(root, a, 0);
}
/*
* Adds all ...
1
vote
2answers
87 views
Where is variablilty in stack consumption coming from?
Whilst running test code from this question and fiddling with the JVM's thread stack size, I found that results were not necessarily repeatable: there were values of stack size for which the program ...
1
vote
3answers
868 views
Java overriding hashCode() gets StackOverflowError
so I'm not well versed in overriding hashCode and I seem to have some infinite recursion somehow going on with the hashCode method.
Here is my scenario, I have a class DuplicateCache that is a cache ...
1
vote
3answers
235 views
AdaptRecursive StackOverflowError
While compiling my project I get:
The system is out of resources.
Consult the following stack trace for details.
java.lang.StackOverflowError
at ...
0
votes
2answers
34 views
StackOverflowError In Java “Fill Image” Function
I've been creating a function that acts like a paint bucket tool for the BufferedImage class in Java. It uses recursion to perform the fill. Sadly, though, when I execute the code, it gives me a ...
0
votes
1answer
22 views
Stackoverflowerror while running Javadoc
Attempted to Javadoc my group's App project, but got stackoverflowerror. Tried increasing heap space, but that did not seem to help. I've googled this question, but all I've seen are questions and ...
0
votes
1answer
187 views
Eclipse: Unable to execute dex: stackOverflowError
When trying to build my android project I get the following error. I've been able to compile without complain on other machines with (what I believe to be) the exact same setup (ubuntu 11.10/eclipse ...
0
votes
2answers
214 views
Android: StackOverflowError in DatePicker
I join timepicker and datepicker. Except that I must add limit to date. Unfortunataly I got an error, with which I can't deal with. Maybe someone can help...
Error occured on ...
0
votes
1answer
114 views
Using ActivityGroup to switch between Views is causing StackOverflowError
I have a program with 4 different tabs.
One of these tabs is an ActivityGroup which has a ListView in it. When I click on one of the list items, it switches to WebActivity:
...
0
votes
1answer
228 views
JstlView adds path prefix recursively causing StackOverflowError
all,
I am writing a demo application to learn usage of the
org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping
class. When I run the application; I get a stack over flow ...
0
votes
3answers
220 views
java.lang.stackoverflowerror on jsf application with tomcat
Hi i am trying to figure out stackoverflow error.
All i know is the error comes from
org.apache.catalina.core.ApplicationDispatcher.setAttribute on line
278
But I have no idea whats causing ...
0
votes
2answers
93 views
Stackoverflow error in android app
in my app i am just running between two activities namely A and B. As per the user he switches from A to B then B to A and again A to B then B to A and goes on.
Both these activities are having list ...
0
votes
2answers
371 views
java.lang.StackOverflowError when invoking action from Struts2 action tag
I have dccr.jsp file that calls an action via the tag:
<s:action name="query-privilege" executeResult="false" var="privilege">
<s:param name="moduleid">9</s:param>
...
0
votes
0answers
24 views
Problem with a Stackoverflowerror
Have the following insertion method for a left child - right sibling tree - seems to be causing a stackoverflow error at the line that called addpage again within the private version of the method. ...
0
votes
0answers
68 views
I am held up with a StackOverFlowError at DomReader?
I am held up with a StackOverFlowError at org.Dom4j.io.DomReader.readElement.Please Find attached the StackTrace. Is there any limit for DomReader that it can parse only some amount of data?
...
0
votes
3answers
136 views
StackOverflow confusion
I'm a java newbie, and am having a very confusing issue with StackOverflow errors / ability to access files between classes. I understand that the underlying cause is likely that I have some ...
0
votes
2answers
563 views
Android Network Programming: IOExceptions and StackOverflowError
In my Android app, I try to connect to a port on a local server to get some packets. I've encased to code in some try & catch's but with the following code:
address = "192.168.175.82";
public ...
0
votes
1answer
355 views
StackOverflowError when trying to deploy an application to Weblogic?
I am working on a J2EE application, to deploy I am using a build.xml (which is used by all team members) to create ear & publish, after the BUILD SUCCESSFUL message appears in Eclipse, I start ...
0
votes
2answers
131 views
SecurityManager StackOverflowError
Running the following code, I get a StackOverflowError at the getPackage() line.
How can I grant permission just to classes inside package I want, if I can't access the getPackage() to check the ...