Documentation MSDN library reference

learn more… | top users | synonyms

0
votes
0answers
11 views

Out of memory exception in gson.fromJson()

I use the following code for converting Json string(strWebserviceResult) to my Object: EntMyClass entMyClass = gson.fromJson(strWebserviceResult,EntMyClass.class); When strWebserviceResult is large ...
0
votes
4answers
74 views

OutOfMemory exception when using much thread in C# application

I'm writing an application in C# that cycle through the articles of a local database copy of wikipedia. I uses a bench of regex to find the right information in these articles, lauch a thread to fetch ...
4
votes
2answers
88 views

What are the main reasons for java.lang.OutOfMemoryError in android

I am new to android and java. I made an application which works fine except that i get java.lang.OutOfMemoryError exception when i scroll down the listviews in my app which increase dynamically (10 ...
0
votes
0answers
32 views

Track OutOfMemory exception?

I have an application that is written in VB.NET 2010, it is designed to load XML data as a string, and do some pretty complex parsing to repair the XML structure and log elements that cannot be ...
0
votes
1answer
64 views

Java - BufferedImage (ImageIO.Read) OutOfMemory Heap Space

Ok, so I am getting an Out of Memory (Heap Space) error in my code, and I have figured out (with profiling) that the error is coming from the creation of images. What I have is a class that creates ...
-1
votes
0answers
29 views

org.jsoup.helper.DataUtil.parseByteData(DataUtil.java:92)

I use the library Jsoup 1.6.2 on android, and i call the method Jsoup.connect(url).get() to get a document html for extracting an image. My problem is that i have to call the method ...
0
votes
0answers
17 views

How to design an NUnit Theory?

I have created an NUnit Theory to help me test some code. The actual code being tested isn't as important to this question as the data that I'm using to test it. Namely, the hours and minutes of time ...
0
votes
0answers
38 views

Lucene.net throws out of memory Exception

I have been working with Lucene .Net interface to operate with Lucene Java libraries. However, lately, I jave been experimenting some out of memory problems which are not related to the Systems RAM ...
10
votes
1answer
218 views

F# compiler throws OutOfMemoryException

The project I use contains a lot of classes inherited from single base class. In unit tests I need to compare received results by types and data. When I use match comparison by types in the case when ...
0
votes
1answer
25 views

Java Cache Query Results

I am using JDBC. I have database intensive computations, and I would like to cache the results. I am using HashMap<String, ResultSet> to cache the results. However, the program often gives ...
0
votes
1answer
23 views

outofmemory exception when reading xml from file

I am working with twitter api data and after storing the stream results in text files, I input the data into a parser application. What I have planned for was large data files so I read the content in ...
0
votes
2answers
95 views

How to solve Out of Memory Error in android?

I tried to convert byte array into hex string. But i end up in out of Memory error exception.I didn't have any idea about this. private String byteArrayToHexString(byte[] array) { ...
0
votes
1answer
16 views

Need to reduce the number of bitmaps being loaded (static bitmap references?)

I've been working on a simple tile-based terrain generation system for a game I'm trying to build, and have run into a bit of a snag. I'm trying to develop a new way to pick and store the bitmap I'll ...
3
votes
1answer
75 views

working with unmanaged resources

I use a 3rd party library which is a wrapper around a native dll. the library contains a type XImage, XImage has some properties and a IntPtr Data() method. XImage also Implements IDisposable but I ...
1
vote
1answer
71 views

Native Heap related Memory Leak in .NET Application

We have a .NET 2.0 application that is a service, on which multiple clients are connected through .NET remoting mainly. The service crashes with OutOfMemory exception at the client site during ...

1 2 3 4 5 36
15 30 50 per page