Back to project page dropbox-android-sync-sdk-mirror.
The source code is released under:
Apache License
If you think the Android project dropbox-android-sync-sdk-mirror 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.dropbox.examples.notes; // www . j ava 2 s . c o m public class Util { static String stripExtension(String extension, String filename) { extension = "." + extension; if (filename.endsWith(extension)) { return filename.substring(0, filename.length() - extension.length()); } return filename; } }