Java tutorial
/******************************************************************************* * Copyright (c) 2008, 2009 SOPERA GmbH. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * * Contributors: * SOPERA GmbH - initial API and implementation *******************************************************************************/ package wsdl; import org.springframework.core.io.Resource; public class ResourceToStringConverter { private Resource resource; private String url; public ResourceToStringConverter(String resource) { try { url = getClass().getClassLoader().getResource(resource).toString(); } catch (Exception ex) { throw new RuntimeException(ex); } } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } public Resource getResource() { return resource; } public void setResource(Resource resource) { this.resource = resource; System.out.println(resource.exists()); } }