How to replace existing value of ArrayList element in Java [duplicate] November 15, 2022 by Tarik Use the set method to replace the old value with a new one. list.set( 2, "New" );