Here you can find the source of generateBoundary(final String value)
protected static String generateBoundary(final String value)
//package com.java2s; //License from project: Apache License import java.util.UUID; public class Main { protected static String generateBoundary(final String value) { return value + "_" + UUID.randomUUID().toString(); }//from w w w. ja va2s . c o m }