Source Code : Separate two values

Java Is Open Source Programming Language You Can Download From Java and Java Libraries From http://www.oracle.com. Click Here to download
We provide this code related to title for you to solve your developing problem easily. Libraries which is import in this program you can download from http://www.oracle.com. Click Here or search from google with Libraries Name you get jar file related it

Separate two values

 
<?xml version="1.0"?>

<project name="Apache Ant Properties Project" default="properties.custom" basedir=".">

  <target name="properties.custom">
    <!-- Windows users should leave this line uncommented -->
    <property name="build.path" 
              value="${basedir}/build.xml:${basedir}/build.properties"/>

    <!-- Unix users should remove the above line 
         and uncomment the below line -->
    <!--
    <property name="build.path" 
              value="${basedir}uild.xml;${basedir}uild.properties"/>
    -->

    <path id="build.path.id">  
      <pathelement path="${build.path}"/>
    </path>

    <property name="build.path.property" refid="build.path.id"/>

    <!-- The converted string that Ant uses as a path -->
    <echo message="Converted string: ${build.path.property}"/>

    <!-- The unconverted string, which Ant treats as a string -->
    <echo message="Path: ${build.path}"/>
  </target>


</project>

           
         
  

Thank with us