Java tutorial
//package com.java2s; /* The Martus(tm) free, social justice documentation and monitoring software. Copyright (C) 2002-2007, Beneficent Technology, Inc. (The Benetech Initiative). Martus is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version with the additions and exceptions described in the accompanying Martus license file entitled "license.txt". It is distributed WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, including warranties of fitness of purpose or merchantability. See the accompanying Martus License and GPL license for more details on the required license terms for this software. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ import java.io.File; import java.util.Vector; public class Main { private static final String MARTUS_SIGNATURE_FILE_DIRECTORY_NAME = "signatures"; public static Vector getSignaturesForFile(File originalFile) { File sigDir = getSignatureDirectoryForFile(originalFile); File[] filesAvailable = sigDir.listFiles(); Vector signatureFiles = new Vector(); if (filesAvailable != null) { for (int i = 0; i < filesAvailable.length; i++) { File file = filesAvailable[i]; if (isMatchingSigFile(originalFile, file)) { signatureFiles.add(file); } } } return signatureFiles; } public static File getSignatureDirectoryForFile(File originalFile) { return new File(originalFile.getParent() + File.separatorChar + MARTUS_SIGNATURE_FILE_DIRECTORY_NAME); } public static boolean isMatchingSigFile(File originalFile, File nextSignatureFile) { String orginalFilename = originalFile.getName(); String nextFilename = nextSignatureFile.getName(); boolean isMatchingSigFile = nextFilename.endsWith(".sig") && nextFilename.startsWith(orginalFilename); return isMatchingSigFile; } }