How to get long out of an ArrayList?

I have
long num = 1234;
ArrayList alist = new ArrayList();
alist.add("name");
alist.add(num);
How do I get num out from the alist?
I tried long num1 = alist.get(1);
but it doesn't work.

798642 wrote:
Well, I am used to using mixed list from C#.Language doesn't matter. It's bad design when doing OO.
Anyway, I am just want lump some data in a list.Why? If that data goes together to mean something, like a name and a birthdate, then you should define a class that has those values as member variables. That's half of what objects are for, after all.
So that groups of data can be retrieved easily. Like maybe info1 of object A is in index 0. info2 of object A is in index 1, info3 of object A is in index 2.Yeah, bad idea. Define a class.
But there seem to be a problem with converting the object type back to their original types in Java.Since you still haven't told us any details about what that problem is, there's not much we can do. You also don't seem to have followed my suggestion from my previous post, or, if you did, you didn't show that code and didn't state clearly and precisely what "doesn't work" about it.

Similar Messages

  • How to get the intersection of two arraylist containing user defined obj??

    How to get the intersection of two arraylist containing user defined obj??
    I can easily get the intersection of two array list which containing some simple class(Integer, String). But how to get the intersection of two arrayList which contain user defined object?
    Here is the sample code..I can not run this out...anybody can help me? thank you very much..
    The correct result should be like this:
    2
    2
    but I can only get this:
    2
    0
    import java.util.*;
    public class testRetain{
         public static void main(String[] args){
              ArrayList a = new ArrayList();
              ArrayList b = new ArrayList();
              a.add( new dog(1,2,2) );
              a.add( new dog(1,2,1) );
    System.out.println(a.size() );
              b.add( new dog(1,2,2) );
              a.retainAll(b);
    System.out.println(a.size() );
    class dog implements Comparable{     
         int head;
         int arms;
         int legs;
         dog(int head, int arms, int legs){
              this.head = head;
              this.arms = arms;
              this.legs = legs;
         public int compareTo(Object o){
              if ( ((dog)o).head > this.head )
                   return -1;
              else if ( ((dog)o).head < this.head )
                   return 1;
              else
                   return 0;
    }

    @Op. Your classes should override equals and hashCode
    Kaj

  • How to get record which store in arraylist?

    Hi all ,
    I want to get the out put from arraylist, but just don't how to deal with it.
    method 1
    List data = new ArrayList();
                String[] checked = request.getParameterValues("mybox");
                   for(int i=0; i<checked.length;i++){
                  String select=checked;
    String Sql=" select NewNum, Name, Length, Segment, Sequence";
    Sql+=" from Sec04";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec00";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec03";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec02";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec01";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec05";
    Sql+=" where NewNum=?";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Secold";
    Sql+=" where NewNum=?";
    //clear any values from request object
    ps.clearParameters();
    // set paramenter from request object
    ps.setString(1, select);
    rs = ps.executeQuery (Sql);
    MyDataBean mydata = new MyDataBean();
    while(rs.next()) {              
    mydata.setName(rs.getString("Name"));
    mydata.setSegment(rs.getString("Segment"));
    mydata.setSequence(rs.getString("sequence"));
    data.add(mydata);
    }//end for
    for(int j=0; j<data.size();j++)
    data.get(j);
    System.out.println(">");
    System.out.println(mydata.getName());
    System.out.println(mydata.getSegment());
    System.out.println(mydata.getSequence());
      List    nameList = new ArrayList();
                List   sequencList =new ArrayList();
                String[] checked = request.getParameterValues("mybox");
                   for(int i=0; i<checked.length;i++){
                  String select=checked;
    String Sql=" select NewNum, Name, Length, Segment, Sequence";
    Sql+=" from Sec04";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec00";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec03";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec02";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec01";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Sec05";
    Sql+=" where NewNum='"+select+"'";
    Sql+=" union";
    Sql+=" select NewNum, Name, Segment, Sequence";
    Sql+=" from Secold";
    Sql+=" where NewNum='"+select+"'";
    rs = ps.executeQuery (Sql);
    int rowCount=0;
    while(rs.next()) {              
    nameList.add(rs.getString("Name"));
    sequenceList.add(rs.getString("Segment"));
    rowCount++;
    for(int j=0; j<rowCount; j++){
    nameList.get(j);
    sequenceList.get(j);
    out.println(">");
    any hit?
    Thank you

    Hi munyul,
    still get empty display. I post all my code, how can find what is wrong.
    I still not sure, want the select is a group of value, how to deal with search, I put then in loop , but still fell not sure, I did some basic search, did not got the result yet.
    my bean
    public class MyDataBean implements java.io.Serializable {
        private String name;       
        private String sequence;
    /* Constructor*/
      public MyDataBean() {
             name =null;
           sequence=null;
      public String getName() {
        return name;
      public void setName(String name) {
         this.name = name;
    public String getSequence() {
        return sequence;
      public void setSequence(String sequence) {
         this.sequence = sequence;
    import java.util.*;
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.sql.*;
    import javax.sql.*;
    import Sec.MyDataBean;
    * TryJdbc.java
    * This servlet demonstrates using JDBC
    public class Formate1 extends HttpServlet {
        ResultSet rs = null;
        PreparedStatement ps = null;
        Connection conn =null;
    OutputStream outStream = null;
       * We want to initialized the JDBC connections here
        public void init()
            try{
            Class.forName("com.microsoft.jdbc.sqlserver.SQLServerDriver");
            catch( Exception e )
                e.printStackTrace();
    public void doGet(
        HttpServletRequest request,
        HttpServletResponse response)
        throws IOException, ServletException {  
           }// end of DoGet
       * This responds to an HTTP GET request.
        public void doPost(
        HttpServletRequest request,
        HttpServletResponse response)
        throws IOException, ServletException {
            response.setContentType("text/html");
           PrintWriter out = response.getWriter();  
            try {
            conn = DriverManager.getConnection("jdbc:microsoft:sqlserver://localhost:1433","A#$","RE@89");
            conn.setCatalog("sequences");  
            List data = new ArrayList();
                String[] checked = request.getParameterValues("mybox");
                   for(int i=0; i<checked.length;i++){
                  String select=checked;
    ps=conn.prepareStatement(" select NewNum, Name, Length, Segment, Sequence" +
    " from Sec04" +
    " where NewNum= ?" +
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Sec00" +
    " where NewNum= ?" +
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Sec03" +
    " where NewNum= ?" +
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Sec02" +
    " where NewNum= ?"+
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Sec01" +
    " where NewNum= ?" +
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Sec05" +
    " where NewNum= ?" +
    " union" +
    " select NewNum, Name, Segment, Sequence" +
    " from Secold" +
    " where NewNum= ? " );
    //clear any values from request object
    ps.clearParameters();
    // set paramenter from request object
    ps.setString(1, select);
    rs = ps.executeQuery ();
    while(rs.next()) { 
    MyDataBean mydata = new MyDataBean();
    mydata.setName(rs.getString("Name"));
    mydata.setSequence(rs.getString("sequence"));
    data.add(mydata);
    }//end for
    MyDataBean mdb;
    for ( int j = 0; j < data.size(); j++ )
    mdb = (MyDataBean)data.get(j);
    System.out.print("> ");
    System.out.print(mdb.getName());
    System.out.print(", ");
    System.out.print(mdb.getSequence());
    System.out.println();
    }catch(SQLException e) {
    finally {
    try {
    if(rs != null)
    rs.close();
    rs = null;
    if (ps != null)
    ps.close();
    ps = null;
    if(conn != null)
    conn.close();
    conn = null;
    catch (SQLException e) {}
    public String getServletInfo()
    return "A Simple Servlet";

  • How to Get In & Out of Match, Get your Downloads and Run

    How to Get In & Out of Match, Get your Downloads and Run 
    So you have read the marketing hype, and are thinking what you really want is to pay for the service to upgrade your low quality bitrate files to a bit better 256KBPS rate easily, as don’t fancy rebuying/ reimporting or other method
    This guide should show you the fastest route to achieve you upgrades
    It assumes you’re working from your main music library, and know something about IT, and have <25k of music files
    Backup your music files
    If you know how to do this, its simple right – so once done then move to step 2, if not read below so you don’t blame me for a loss
    Transfer Hardware
    your choice the transfer hardware, suggest offline harddrive via USB3.0 (blue USB connector/eSata/ 1494b/1GB NIC/etcetera but your call
    If you use USB2.0/ 100MB NIC/1394a or other lower transfer method, accept the time hit
    Don’t use Time Backup/local disk backup software unless you have RAID 5 setup or better (and if wondering what that is, you almost certainly don’t then)
    Don’t use  internet backup service unless you live next door to the hosting company, with stunning internet connection to envy 99.9% of the human race, remember this is the fast method folks)
    Transfer Software
    I am assuming you know how to do a copy n paste/ robocoby/xcopy/drag n drop or whatever method turns you on via finder/explorer/cmd window ect
    Caveat #01: If not sure how to do above, then stop now as you are not IT literate ready for this
    Find your music files and back them up
    Now keep the computer running, preferably with nothing else running from this point for ease of use bar an active internet connection, and power saving switched off
    If you know where the files are great, backup the files, but some don’t so for them as below
    Caveat #02: if you don’t know how to find them your most likely on default settings, or sitting with a legacy from a past upgraded machine - below should help but you might want to stop now if you have never been curious about the location before
    Within iTunes , go to [Edit/Preferences/Advanced] and note down the location shown for Itunes Media Location
    In the same location of preferences, hit [Keep iTunes Media Folder organised] and let the application do its stuff.  You will end up with the location in 1ciii a ready to copy location which for simplicity of topic, copy the whole folder and its subfolders.  You may end up with some extra copies of music files (an iTunes safety mechanism, but it won’t show in the folder location, and we can ignore later on)
    Enable Match (after paying for the service)
    Run Match
    Accept that the Apple iTunes process is not perfect, may crash/stop/pause and reboots will be needed, and we can move on so to speak. Key here is you cannot do an unattended script or assume no end user interaction needed L
    Turn on iTunes Match, notice the new ITunes Match on the left hand sidebar, click it, then hit the Start button – if it works and you eventually get to STEP 3 perfect.
    If it fails before getting to STEP 3, reboot and restart
    If this still fails to get to STEP 3, then create a new iTunes database (browse forums on how to do), read your media files from the location in 1civ
    Stop MATCH  (the upload process only, not the service)
    Once STEP 3 starts, CLICK STOP - ASAP, as all this does it upload data, and you don’t want to do this, just get your upgraded files (remember the title of this entry your reading!)
    This also avoids future issues with Album art lost
    Delete Matched low bitrate files
    Create a NEW SMART playlist, with two criteria
    Show all files with bitrate is less then 256
    Show all files where iCloud status is MATCHED
    In the new playlist, click it and it shows the files we want to blow away. 
    Click Edit / Select All then
    Click ctrl in windows/apple  (cmd) logo in mac, and press delete button, ensuring you do NOT tick the delete from iCloud Option.  Now want a few mins for it do do its stuff.
    Download Upgraded BitRate Files
    In the same location as 5, reselect all, and right click, and select the option to download all, and off it goes
    On the lefthand sidebar in iTunes, click Downloads, and you will then see in the middle bottom screen an option for simultaneous downloads (select it)
    Your done Just let the app now do its stuff. I would ignore the message saying you can get on with other things, and use anther machine, preferably not using the same internet connection.
    Optional Steps:
    Click randomly from the Itunes/Matched/256KBPS listed files, and play them.  Not all the files, one every 30 or so, and just the start, then last few seconds to check not dead or corrupt files.
    Update your Step 1 backup with the new files, which is going to take up more space, guess at 40%.
    Kill your iTunes Match account (both the recurring automatic subscription, and  the account if not continuing to use the store part of iTunes)

    bump

  • My 4gb SDHC flash mem card is stuck in DVD slot on my iMac 27". How to get it out?

    I misplaced my 4GB flash memory card (Canon camera) in the DVD slot (above the card slot) and it disappeared while I was trying to get it out. Naturally I inadvertently (spelled "stupidly") knocked it inside and could not figure out how to get it out. The dust rubber "shields" hide it and I've tried to find it with a toothpick and wedge it out, to no avail. Are there any ideas or suggestions others may have used to get it out (I know turning it on it side and shaking won't work). Why in the world did they design it like it is -- I've had it happen to me and others have also told me of their misadventures, but they also were able to gradually get it out. This time, it's in too deep. Can I ignore it and still use the CD/DVD slot without it blowing up?

    You might need to take to an Apple technician or apple dealer to let them take apart the iMac and remove the flash memory card. if you're very careful you might try a pair of needle nose pliers and a flashlight but it's easy to do damage to the DVD internal mechanical if you're not real careful.
    A good story to tell your grand kids maybe ;-)
    Good luck

  • How to get data out of XML?

    Hi,All.
    I am running SAX (JAXP1.01) in Applet to process XML file. My question is how to get data out of xml format according to the field name (@age,@rank etc)
    and write into string buffer seperated by comma.
    Should I use SAX or DOM? (file size is big)
    My xml as follow :
    <ROOT>
    <FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@team/relay}">
         <ObjectName>Field124</ObjectName>
         <FormattedValue>HUNTER</FormattedValue>
         <Value>HUNTER</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@age}">
         <ObjectName>Field125</ObjectName>
         <FormattedValue> 19</FormattedValue>
         <Value> 19</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@Rank}">
         <ObjectName>Field126</ObjectName>
         <FormattedValue>43</FormattedValue>
         <Value>43</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{results.athrel_name}">
         <ObjectName>Field127</ObjectName>
         <FormattedValue>1-1 NORRIE</FormattedValue>
         <Value>1-1 NORRIE</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield2}">
         <ObjectName>Field128</ObjectName>
         <FormattedValue>1:54.75</FormattedValue>
         <Value>1:54.75</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield1course}">
         <ObjectName>Field129</ObjectName>
         <FormattedValue/>
         <Value/>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield1std}">
         <ObjectName>Field130</ObjectName>
         <FormattedValue/>
         <Value/>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield2course}">
         <ObjectName>Field131</ObjectName>
         <FormattedValue/>
         <Value/>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield2std}">
         <ObjectName>Field132</ObjectName>
         <FormattedValue>QT</FormattedValue>
         <Value>QT</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@points(left)}">
         <ObjectName>Field133</ObjectName>
         <FormattedValue/>
         <Value/>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@pointsdecimal}">
         <ObjectName>Field134</ObjectName>
         <FormattedValue/>
         <Value/>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:decimal" FieldName="{@points(right)}">
         <ObjectName>Field135</ObjectName>
         <FormattedValue>0</FormattedValue>
         <Value>0.00</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@timefield1}">
         <ObjectName>Field136</ObjectName>
         <FormattedValue>1:55.98</FormattedValue>
         <Value>1:55.98</Value>
    </FormattedReportObject>
    <FormattedReportObject xsi:type="CTFormattedField" Type="xsd:string" FieldName="{@Rank}">
         <ObjectName>Field137</ObjectName>
         <FormattedValue>43</FormattedValue>
         <Value>43</Value>
    </FormattedReportObject>
    Repeat...
    </FormattedReportObject>
    </ROOT>
    ------------------------------------------------

    For big files use SAX: quicker and less memory usage.
    The xerces parser from Apache has some examples. Basically what you do is scan the XML, remembering what tag you are and once you find the right tag, read the contents.

  • How to get graininess out of black areas?

    How to get grainiesss out of black or dark areas?

    you can't.
    a) too low light recording results in 'noise' due to in-camera amplification
    b) noise is handled by the compressors as 'content'; which results in blocky artefacts.
    for FCPX are plugins avail, as the famous Natress DeNoiser, which smoothen such pictures (very well). a $$$ solution.-
    next time more light …

  • The headphone connector broke off inside my Ipod, any suggestions on how to get it out?

    The headphone connector broke off inside my Ipod, any suggestions on how to get it out?

    See this previous discussion:
    Broken headphone jack! 3.5mm dillemma....: Apple Support Communities

  • Huge Problem: How to get Information out of the SAP System into MySQL?

    Hi all
    Im totally despaired... So im comming here, hoping to find ANY solution.
    I wrote a Program, which creates a internal Table wich some information from many DDIC-Tables. The internal Table is about 7 Columns, with only char fields.
    Also I have a MySQL Server (reached through the Internet), with a database on it, and a table, which looks 1:1 as my internal Table in ABAP does.
    Now I want to append the Data from the internal Table to the MySQL Table.
    Is there ANY chance of getting this done?
    and btw. can I append this Data with a secured connection?
    THX for help...
    greets
    Markus Voelker

    Think of Orchestrator as a "router", that will route information and workflows between SCOM, and [insert 3rd party product here].  Depending on your 3rd party product, there may be an "integration pack" for it that Orchestrator can use for out of the
    box tasks.
    So what's an integration pack?  Well - think of it like a management pack, but for Orchestrator.  SCOM does monitoring, but it doesn't know how to monitor something unless you install the relevant management pack.  The management pack contains
    all the rules/monitors for monitoring whatever it is you wish to monitor.
    Well, an integration pack is similar in concept, except it tells Orchestrator how to interface and integrate with whatever it is you're trying to perform tasks with. 
    For what you want to do, there is a SCOM integration pack.  This is a set of tasks that can get alerts and events out of Operations Manager (there are also tasks that can create and close alerts in Operations Manager). 
    From what I can imagine - you would want to get alerts out of SCOM when they happen (so you would use one of the SCOM orchestrator tasks to "get alert if status = new, and source = myapplication"), and then you can pass that alert to another task - such
    as write it to a CSV file or something.  You could then have another task that picks up that CSV file, and passes it to your application where it can be captured.  Or you could use the CSV to populate variables in a powershell script, and then powershell
    that information into your app.
    There are many ways you could do this, but I do believe that Orchestrator would be the better option. 
    http://www.dreamension.net

  • How to get the OUT value of a PL/SQL procedure?

    that is to say, I want to get a number form a procedure which code is familiar to:
    create or replace procedure get_salary(
    name in varchar2,
    id in varchar2,
    salary out number
    In java code, How to get the value of salary?
    PLZ

    You'll want something like this:
    CallableStatement stmt;
    Connection        conn;
    << Create connection to database >>
    stmt = conn.prepareCall( "{call get_salary( ?, ?, ? )}" );
    stmt.setString( 1, someName );
    stmt.setString( 2, someID   );
    stmt.registerOutParameter( 3, java.sql.Types.INTEGER );
    stmt.executeUpdate();
    int outSalary = stmt.getInt( 3 );Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • My ipad is stuck on Account Not Verified .  Can anyone tell me how to get close out of thisMy ipad is stuck on Account Not Verified .  Can anyone tell me how to get close out of this (is there a Ctrl alt delete type of resolution for the ipad)  Thank you.

    My IPad is stuck on Verifying.  I'm on the Settings page and there is a box that says Account not Verified.  At the bottom is something in red asking me if I want Delete Account?  It's been stuck for an hour.  I tried turning my IPad off, but when I go back on and into Settings it's still there.  Does anyone know how to get out of this?  Thank you.

    To do a reboot, press and hold the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears.

  • Itunes 8 how to get video out of there to Zen mozaics

    I am totally?lost. Anyone have help to tell me step by step for itunes 8 how to get the kids video of Jonas bros to the creative Zen Mozaics. This is hard for me HELP . Thanks Stephanie a Mom in crisis LOL

    Please first check the the format of the kid video that you would like to play on the Creative Zen, then follow the guide below, i'm sure you can make it easily.
    How to convert video to Creative Zen compatible
    You have a portable video/audio player, lets say a fancy Creative Zen, which you got as a gift from your friends or you bought for yourself, and would like to watch your favorite movies or just listen to the beautiful music using it's Sometimes you might encounter such an embarrassing situation as you are trying to playback a certain file format (video/audio) on it, but it just cant work out. Creative Zen video converter is just the program you need. It is a simple yet powerful Video to Creative Zen converter software that can convert almost all video/audio formats to Creative Zen compatible format and enables you to solve these problems quite easily with a few mouse clicks.
    The Creative ZEN is a range of digital audio players (DAPs) and portable media players. All players are compatible with MP3 and WMA, while various models support WAV and Audible files. They are nati'vely compatible with Windows, while the current players exclusi'vely support Windows XP and Vista. They also support various other formats: Video: iMJPEG, WMV, and AVI (MPEG-4 SP, DivX, Xvid), while MPEG-, and MPEG-2 are supported, but must be transcoded with the included software (Video must not exceed the player's dimensions at 320240 pixels); Audio: MP3, AAC (unprotected ".m4a"), WMA (including protected), WAV, and Audible 2, 3, and 4 formats.
    At the moment when you feel you got what you wanted of using Creative Zen video converter, there are reasons to save your project, in case if you want to change any adjustments and settings late, or a desire to get the resulting video as soon as possible. The both things will seem to be a trifle to do if to follow the steps below.
    Tutorials
    Step by Step on how to convert video to Creative Zen with Creative Zen video converter
    Step Download and install Creative Zen video converter
    Click here to download and install it by running Creative Zen video converter.exe
    Step 2: Run Creative Zen video converter and select a video/audio file you want to convert.
    Click the Add or File button to choose a file type that need to be converted, you can convert simply audio format or video format. while you can set an output path for the resulted video by hitting the Output drop-down list.
    Step 3: click the Edit button to set detailed info for the desired video.
    A. Click the Trim button to set the length/range of the video that need to be converted.
    You can choose a small part of a movie or the whole one to convert to the selected format
    B. Click the Effect button to tune the saturation, contrast, brightness values and make sure are the one you preferred, preview the change on the screen.
    C. Click the Crop button to cut the unnecessary part or black part of the movie.
    Step 4: Convert video
    This step will take you a moment to carry out the conversion process, the time vary with different parameters you set.
    Step 5: Upload resulting video to your portable
    You need a USB cable to transfer the converted video to your Creative Zen.
    please check the specific tool you would like to have to work with your Creative Zenothers: avi to Creative Zen MP4 to Creative Zen WMV to Creative Zen 3GP to Creative Zen MOV to Creative Zen flv to Creative Zen vob to Creative Zen rm to Creative Zen rmvb to Creative Zen mkv to Creative Zenasf to Creative Zen mpg to Creative Zen DVD to Creative Zen

  • HT201210 my nephews ipod is in recovery mode and i cannot figure out how to get it out of recovery mode

    I am not for sureu as to which ipod touch that it is... But it looks like an IPhone 3g... It is recovery mode and cannot get it out.,.. I need some help...

    See:
    iOS: Restore error 3194 or 'This device isn't eligible for the requested build'
    How to Fix iTunes Error 3194?
    Fix Error 3194 from iTunes during iPhone restore

  • How to get ipod out of recovery mode without losing media.

    i tryed to update my ipod on another computer and it put it in recovery mode.how do i get it out of recovery mode without losing media.

    If this program does not work then you will have to restore.
    RecBoot: Easy Way to Put iPhone into Recovery Mode

  • ITune has sombody's email address. How to get it out???

    When I try to buy fm iTunes on my iphone an email address Gor sw unknown person is in box where mine shut go and I can't get it out. So I cannot order and pay for itunes .
    How do I get it out??

    Hey George,
    Sign-in to the iTunes Store on your Mac and then sync the iPhone again, as described here.
    http://support.apple.com/kb/HT1311
    Jason

Maybe you are looking for

  • Oracle ADF application run while debuging but gives error while running

    Hi, I created application in oracle ADF, which accesses database from SQL server 2008. I changed database names to different database having same tables. When I debug it by using breakpoint in EOIMPL class, it runs perfectly. But when run it by remov

  • Purchase Req : Plain customizing or SWDD development is required??

    Dear All, A scenario has to be implemented for Purchase Requisition approval . Certain levels of approval are required . Notifications for failure of approval are to be sent back to the originator. Also, these have to be conveyed by mail ,as in SMTP.

  • Error :Object no longer exists

    Hi All, While executing an update statement on a table which has got more than 40 lac Records im getting an error as Object no longer exists. i have created an index and tried.But the update is not working.Any suggestions. Thanks in advance.

  • CS4 and CS2

    I may have asked this before, but when you get over 30, you'll understand. I have a laptop that I use frequently, that has to run  CS2 rather than CS4 (partly because of the Adobe limit on # of CS4 machines) and wonder if it is somehow possible to ge

  • [ShareIt]C​an it support two dimenional bar code scanning method to download/i​nstall ShareIt?

    I foundt there is no the dimentional bar code scanning method to download/install shareIt? if it has, that will be convenient.   Solved! Go to Solution.