Here you can find the source of randomSuffix(final String name)
public static String randomSuffix(final String name)
//package com.java2s; /**//from w w w . jav a 2s . co m * Copyright (C) 2009-2012 Barchart, Inc. <http://www.barchart.com/> * * All rights reserved. Licensed under the OSI BSD License. * * http://www.opensource.org/licenses/bsd-license.php */ public class Main { public static String randomSuffix(final String name) { return name + "-" + System.currentTimeMillis(); } }