Back to project page androidata.
The source code is released under:
Apache License
If you think the Android project androidata listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.stanidesis.androidata; /*from w ww .j av a 2s.co m*/ /** * Created by Stanley Idesis on 9/11/14. */ public class Utils { public static final <T extends Object> String arrayToString(T[] array) { StringBuilder builder = new StringBuilder(); for (Object obj : array) { builder.append(obj).append(","); } return builder.toString(); } }