<?xml version="1.0" encoding="UTF-8"?>











<rss version="2.0" xmlns:jf="http://www.jivesoftware.com/xmlns/jiveforums/rss">



<channel>
    <title>Support Forums: Message List - java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
    <link>http://www.theserverside.com</link>
    <description>Most recent forum messages</description>
    <language>en</language>
    
        <generator>Jive Forums Silver 5.5.30 (www.jivesoftware.com)</generator>
    
    <pubDate>Wed, 19 Jun 2013 15:07:59 -0400</pubDate>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[<p>Convert immutable java.util.Arrays$Arraylist to java.util.ArrayList</p>...]]></description>
        

        <pubDate>Wed, 20 Apr 2011 07:15:55 -0400</pubDate>

        

        <jf:creationDate>Wed, 20 Apr 2011 07:15:55 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 20 Apr 2011 07:15:55 -0400</jf:modificationDate>
        <jf:date>Apr 20, 2011</jf:date>
        <jf:author>Vijayaraj Marappa Gounder</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Use LinkedList instead</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[It's not LinkedList that helped you. You could have used&nbsp;any List implementation that supports a modifyable result.&nbsp;This works because you instantiated a new modifiable list using the immutible list created from Arrays.aslist(...).<br/><br/>]]></description>
        

        <pubDate>Tue, 06 Apr 2010 19:23:24 -0400</pubDate>

        

        <jf:creationDate>Tue, 06 Apr 2010 19:23:24 -0400</jf:creationDate>
        <jf:modificationDate>Tue, 06 Apr 2010 19:23:24 -0400</jf:modificationDate>
        <jf:date>Apr 6, 2010</jf:date>
        <jf:author>Mike Moran</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>Use LinkedList instead</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[I was running into the UnsupportedOperationException as well....]]></description>
        

        <pubDate>Wed, 11 Jun 2008 05:16:26 -0400</pubDate>

        

        <jf:creationDate>Wed, 11 Jun 2008 05:16:26 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 11 Jun 2008 05:16:26 -0400</jf:modificationDate>
        <jf:date>Jun 11, 2008</jf:date>
        <jf:author>Manfred Sch??rhoff</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>Use LinkedList instead</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[I was running into the UnsupportedOperationException as well....]]></description>
        

        <pubDate>Wed, 11 Jun 2008 05:15:44 -0400</pubDate>

        

        <jf:creationDate>Wed, 11 Jun 2008 05:15:44 -0400</jf:creationDate>
        <jf:modificationDate>Wed, 11 Jun 2008 05:15:44 -0400</jf:modificationDate>
        <jf:date>Jun 11, 2008</jf:date>
        <jf:author>Manfred Sch??rhoff</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[By the way, you are using AbstractList.  ArrayList and Arrays$ArrayList are both types of AbstractList.  That's why you get UnsupportedOperationException: Arrays$ArrayList does not override remove(int) so the method is called on the superclass,...]]></description>
        

        <pubDate>Tue, 17 Jan 2006 04:43:23 -0500</pubDate>

        

        <jf:creationDate>Tue, 17 Jan 2006 04:43:23 -0500</jf:creationDate>
        <jf:modificationDate>Tue, 17 Jan 2006 04:43:23 -0500</jf:modificationDate>
        <jf:date>Jan 17, 2006</jf:date>
        <jf:author>D S</jf:author>
        <jf:replyCount>0</jf:replyCount>
    </item>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[By the time you get to the remove(i) statement, list is no longer a java.util.ArrayList.  When you call Arrays.asList it does not return a java.util.ArrayList.  It returns a java.util.Arrays$ArrayList which is an immutable list.  You cannot add to it and...]]></description>
        

        <pubDate>Tue, 17 Jan 2006 04:37:47 -0500</pubDate>

        

        <jf:creationDate>Tue, 17 Jan 2006 04:37:47 -0500</jf:creationDate>
        <jf:modificationDate>Tue, 17 Jan 2006 04:37:47 -0500</jf:modificationDate>
        <jf:date>Jan 17, 2006</jf:date>
        <jf:author>D S</jf:author>
        <jf:replyCount>1</jf:replyCount>
    </item>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[Objective:<br>To remove the object from List <br><br>condition:<br>if the parameter passed	to this method matches with the objects'(id) present in the arraylist<br>then delete the object from the list.<br><br>below is exact piece of...]]></description>
        

        <pubDate>Mon, 16 Jan 2006 23:06:05 -0500</pubDate>

        

        <jf:creationDate>Mon, 16 Jan 2006 23:06:05 -0500</jf:creationDate>
        <jf:modificationDate>Mon, 16 Jan 2006 23:06:05 -0500</jf:modificationDate>
        <jf:date>Jan 16, 2006</jf:date>
        <jf:author>mathew lawrence</jf:author>
        <jf:replyCount>3</jf:replyCount>
    </item>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[My first question would be, is this the exact piece of code which causes the problem, or a piece of code that you put together to illustrate the problem?  My next question would be, is the ArrayList here a java.util.ArrayList or another ArrayList which...]]></description>
        

        <pubDate>Fri, 13 Jan 2006 09:54:23 -0500</pubDate>

        

        <jf:creationDate>Fri, 13 Jan 2006 09:54:23 -0500</jf:creationDate>
        <jf:modificationDate>Fri, 13 Jan 2006 09:54:23 -0500</jf:modificationDate>
        <jf:date>Jan 13, 2006</jf:date>
        <jf:author>D S</jf:author>
        <jf:replyCount>4</jf:replyCount>
    </item>


    <item>

        <title>java.lang.UnsupportedOperationException at java.util.AbstractLis</title>
        <link>http://www.theserverside.com/discussions/thread.tss?thread_id=38493</link>

        

        
            <description><![CDATA[Hi,                                                        I get a &quot;java.lang.UnsupportedOperationException at java.util.AbstractList.remove&quot;                                 My piece of code  <br><br>List dataList = new ArrayList(); <br>int...]]></description>
        

        <pubDate>Thu, 12 Jan 2006 01:47:30 -0500</pubDate>

        

        <jf:creationDate>Thu, 12 Jan 2006 01:47:30 -0500</jf:creationDate>
        <jf:modificationDate>Thu, 12 Jan 2006 01:47:30 -0500</jf:modificationDate>
        <jf:date>Jan 12, 2006</jf:date>
        <jf:author>mathew lawrence</jf:author>
        <jf:replyCount>8</jf:replyCount>
    </item>



</channel>
</rss>

