Using equals method with an array?

Hello all,
I am attempting to use the equals method with an array and keep getting compiling errors. Could you please take a look at my code and tell me where I am going wrong:
if(board[row][col].equals(" "))
          str=str + " ";
          else
          str=str + board[row][col];
Thank you.

Hello all,
I am attempting to use the equals method with an
array and keep getting compiling errors. Could you
please take a look at my code and tell me where I am
going wrong:
if(board[row][col].equals(" "))
          str=str + " ";
          else
          str=str + board[row][col];
Thank you.If you could post more of your code, that would be quite helpful...

Similar Messages

  • Can we use equals method in JSTL

    hia all,
    is there is possible to use equals method in JSTL c:when tag. if so please give me an example or else please tell me some solution.
    regards
    subramanian

    Have you tried it anyway? Where exactly are you talking about with "contents"?
    Remember that the == operator in JSTL isn't the same as the == operator in Java. In JSTL it invokes the Object#equals() method behind the scenes, while in Java it checks the equality of the reference.

  • Why not to use static methods - with example

    Hi Everyone,
    I'd like to continue the below thread about "why not to use static methods"
    Why not to use static methods
    with a concrete example.
    In my small application I need to be able to send keystrokes. (java.awt.Robot class is used for this)
    I created the following class for these "operations" with static methods:
    public class KeyboardInput {
         private static Robot r;
         static {
              try {
                   r = new Robot();
              } catch (AWTException e) {
                   throw new RuntimeException(e + "Robot couldn't be initialized.");
         public static void wait(int millis){
              r.delay(millis);
         public static void copy() {
              r.keyPress(KeyEvent.VK_CONTROL);
              r.keyPress(KeyEvent.VK_C);
              r.keyRelease(KeyEvent.VK_C);
              r.keyRelease(KeyEvent.VK_CONTROL);
         public static void altTab() {
              r.keyPress(KeyEvent.VK_ALT);
              r.keyPress(KeyEvent.VK_TAB);
              r.keyRelease(KeyEvent.VK_TAB);
              r.keyRelease(KeyEvent.VK_ALT);
                   // more methods like  paste(), tab(), shiftTab(), rightArrow()
    }Do you thinks it is a good solution? How could it be improved? I've seen something about Singleton vs. static methods somewhere. Would it be better to use Singleton?
    Thanks for any comments in advance,
    lemonboston

    maheshguruswamy wrote:
    lemonboston wrote:
    maheshguruswamy wrote:
    I think a singleton might be a better approach for you. Just kill the public constructor and provide a getInstance method to provide lazy initialization.Thanks maheshguruswamy for advising on the steps to create a singleton from this class.
    Could you maybe advise also about why do you say that it would be better to use singleton? What's behind it? Thanks!In short, it seems to me that a single instance of your class will be able to coordinate actions across your entire application. So a singleton should be enough.But that doesn't answer why he should prefer a singleton instead over a bunch of static methods. Functionally the two are almost identical. In both cases there's only one "thing" on which to call methods--either a single instance of the class, or the class itself.
    To answer the question, the main reason to use a Singleton over a classful of static methods is the same reason the drives a lot of non-static vs. static decisions: Polymorphism.
    If you use a Singleton (and and interface), you can do something like this:
    KeyboardInput kbi = get_some_instance_of_some_class_that_implements_KeyboardInput_somehow_maybe_from_a_factory();And then whatever is calling KBI's public methods only has to know that it has an implementor of that interface, without caring which concrete class it is, and you can substitute whatever implementation is appropriate in a given context. If you don't need to do that, then the static method approach is probably sufficient.
    There are other reasons that may suggest a Singleton--serialization, persistence, use as a JavaBean pop to mind--but they're less common and less compelling in my experience.
    And finally, if this thing maintains any state between method calls, although you can handle that with static member variables, it's more in keeping with the OO paradigm to make them non-static fields of an instance of that class.

  • How to use HorizontalList populated with an Array of Image?

    Is it possible to populate a HorizontalList with an Array of
    Image? I am trying to create a HorizontaList of Images (thumbnails)
    using a dynamic method where I put each thumbnails found into an
    Array and then indicating to the HorizontalList to use the Array as
    the dataProvider. The result is that I just see the ID generated
    for each Image.
    Since I am controlling the content of the HorizontalList into
    the mx:source, I am a bit confused how to use the itemRenderer
    property.
    Any help will be appreciated since Google don't show a lot of
    example/problems like mine at this moment!

    Hi,
    Just set the itemRenderer property to mx.controls.Image and
    you should be done.

  • Using onFocus method with embedded html

    Hi,
    I have embedded html in a servlet. I am using a text field to call the onFocus method with the following code:
    out.println("<input type='text' name='name' value='0' onFocus='if(this.value=='0')this.value=';'>");
    If I was using straight html with no servlet this works fine. When the user clicks on the field the default value is automatically erased.
    Why will this not work in a servlet?
    I have also tried calling a javascript function. Please note that I successfully use javascript with input type 'button' to render a pop up window with dimensions. So my javascript inside a servlet works elsewhere.
    Thanks VERY MUCH for your time
    Rick

    I don't think it's the same as I'm doing. Essentially, I have a JEditorPane subclass, which just has a few custom tags in it. I don't need them to be recognized by java, since it will be uneditable, but I just need to know how to convert from the getText() locations to the actual displayed text locations.
    Also, when I set the text as text/html, it creates a bunch of extra HTML tags, so it's larger than the original String used to create it.

  • Problem downloading photo elements 12. got message missing "file archive" using alt method with f# 2

    problem  with download for photo elements 12. got message as I downloaded file 2 (using alt method) that I was miss the "file archive"

    Firstly, there's no such thing as Apache 9.3, there's Apache 1 (and subversions) and Apache 2 (and subversions). Your error message -
    Oracle-HTTP-Server/1.3.28Shows you're using Apache 1.3.28
    Secondly, I'm confused by your comment -
    I do not have Apache 9.3 or higher but I think oracle should offer this in its companion CDOracle does offer the Apache server, if you're saying you didn't get it from Oracle then where did your Apache server come from?
    Thirdly, I notice from your config file -
    ErrorLog "|E:\oracle\product\10.1.0\Companion\Apache\Apache\bin\rotatelogs logs/error_log 43200"That you're piping the logs through rotatelogs, are you sure the logfiles haven't just been renamed?

  • When i used invoke methode with read out variants array byte crashd my LV by recal the second repeat?

    If i check it with VBASIC it runs fine, check it to run with Delphi its fine, wot is wrong with LV 6.02

    You may want to contact National Instruments directly. Try: www.ni.com/ask
    Brian

  • How do I use setString() method with multiple bind variables

    I have two setString() statements and a select union statement. My class compiles but only displays the data for the first table ignoring the second setString() statement. But When I replace the "where id=?" with "where id=12 or someid", it works and displays all data found in both tables.
    Am I not properly using the setString() method?
    public class LdData{
    private String id;
    public LdData(){
    public void setId(String id)
        this.id = id;
      public String getId()
        return id;
    public Collection getLdData() throws Exception{
                    List rows = new ArrayList();
    //connection statement
    String sql_query="SELECT a,b FROM table1 WHERE id = ? " + " UNION " + "SELECT a,b FROM table2 WHERE id= ?";
    try {
                            conn = ds.getConnection();
    pstmt = conn.prepareStatement( sql_query );
    pstmt.setString(1, this.id);
    pstmt.setString(2, this.id);
    rst = pstmt.executeQuery();
    while (rst.next()) {
    //dataEntry.java - contains my getter and setter
    dataEntry info = new dataEntry(rst.getString("a"), rst.getString("b"), this.id);
    rows.add(info);
    //catch all SQLexceptions, NamingExceptions
    //close all connection
    return rows;
    //dataEntry.java - dataEntry class
    private String a;
    private String b;
    private String id;
    public dataEntry(String a, String b, String id){
    seta(a);
    setb(b);
    setbdate(bcode);
    this.a = a;
    this.b = b;
    this.id = id;
    public String getA(){
    return a;
    public String getB(){
    return b;
    public String getId(){
    return id;
    public void setA(String a){
    this.a = a;
    public void setB(String b){
    this.b = b;
    public void setId(String id){
    this.id = id;
    //index.jsp - displays data
    <jsp:useBean id="test" class="lddata" scope="request">
    <jsp:setProperty name="test" property="id" param="id"/>
    </jsp:useBean>
    <display:table name="${test.lddata}"/>

    This just doesnt make sense to me at all. :( Could it be a naming issue? I mean both tables have the same field names but different data information
    so the union will never sort and choose. And the weirdest thing is that
    //this works -
    ->String sql_query="SELECT a,b FROM table1 WHERE id = TU234 " + " UNION ALL" + "SELECT a,b FROM table2 WHERE id= TU234";
    //I also tried this, but the second statement doesnt work
    ->pstmt.setString(1, "TU234"); //this works.
    ->pstmt.setString(2, "TU234"); //this doesnt
    //It also tried this, it worked for both set statements, but I need it in an list or so.
    while (rst.next()) {
    String a = rst.getString(a);
    String b = rst.getString(b);
    String id = rst.getString(id);
    System.out.println(a+""+b+""+id);
    }Is there anyother way I can collect the data into a jsp page without using javabean?

  • Using a method (with paramter) as a value?

    I'm using JSF 1.2 and am trying to accomplish the following:
    Say I have a class, Entity, which has a method:
    public String getResult(String name)
    In my web page, I'd like to loop through some values for name and display each result in a <h:outputText ...>, using things like 'entity.getResult("foo")' in the value attribute, where foo is one of the names in the list I'm looping through.
    Is something like this possible, or would I just be better off building a HashMap or something with the names and results?
    Thanks,
    Matthew

    Isn't an option to collect the data in a List and use the h:dataTable to display them in a table?
    Check http://balusc.xs4all.nl/srv/dev-jep-dat.html how to use datatables.
    Anyway, if this isn't an option, then use f:attribute:
    JSF<h:outputText id="myId" value="#{myBean.text}"><f:attribute name="text" value="blah" /></h:outputText>MyBeanpublic String getText() {
        UIComponent component = FacesContext.getCurrentInstance().getViewRoot().findComponent("myId");
        String text = (String) component.getAttributes().get("text");
        return text;
    }This will show "blah" in the outputText. Of course you can use this to fill in the virtual param of getRequest().

  • Can't use inherited method with JButton

    I am trying to use the getActionListeners() method on a JButton. The method is inherited from the AbstractButton class. However, when I try to compile with this line...
    ActionListener CurrentListeners[] = OKButton.getActionListeners();I get the following error:
    Method getActionListeners() not found in class javax.swing.JButton.
    I am also using the removeActionListener() method, which is inherited from the same object, and the compiler has no problem with that!

    Okay, then does anyone know how I can change the
    ActionListener for a JButton? I want to use the
    removeActionListener(ActionListener l) method and then
    addActionListener(...). However, since I can't get
    the current ActionListener, I have nothing to pass
    into the remove method.It's my belief that's this is why this method was added to AbstractButton in JDK 1.4. It makes life so much easier. Why don't you download the JDK 1.4 and install it into your IDE?
    Otherwise, you should subclass JButton as someone else suggested and provide an accessor method for the listener.

  • Cannot use Create method with SODataEntity in iOS Native Apps connect to SMP 3.0 SP05

    Hi experts,
    I am following these blogs:Mobile Application Development Platform for Developers - Native Apps. They are very helpful, thanks Kenichi.
    But i have some error when i use Integration gateway.
    First, i try method Read, it works perfectly. Then, i try to use method Create, and i meet an error. Here is the error :
    Error Domain=NetworkDomain Code=4 "HTTP Response: 403 forbidden" UserInfo=0x7f86d2688040 {NSLocalizedDescription=HTTP Response: 403 forbidden}
    I test CRUD method in REST client, and it runs without any errors. I think the difference between Create and Read method is "X-CSRF-Token": Fetch with Read and specific Token with Create. But i do not know how to supply or config "X-CSRF-Token" field when use SOData...
    Thanks and Reagrads,
    Sao Vu.

    Hi Sao,
    Is your problem solved?
    If not, below code may be able to help you for creation using ODataStore:
    MAFLogonRegistrationData *data = [[MyLogonHandler shared].logonManager registrationDataWithError:&error];
        NSString *baseURL = [NSString stringWithFormat:@"%@", data.applicationEndpointURL];
        //opening the store
        self.onlineStore = [[OnlineStore alloc] initWithURL:[NSURL URLWithString:baseURL]
                                    httpConversationManager:[MyLogonHandler shared].conversationManager];
        [self.onlineStore openStoreWithCompletion:^(BOOL success) {
    //Read request after the store is successfully opened
            SODataRequestParamSingleDefault* readRequest = [[SODataRequestParamSingleDefault alloc] initWithMode:SODataRequestModeRead resourcePath:@"CollectionName"];
            [self.onlineStore scheduleRequest:readRequest delegate:self];
            NSString *finishedSubscription = [NSString stringWithFormat:@"com.sap.sdk.request.delegate.finished.%@",  readRequest];
    //Going for create once read request is success
            [[NSNotificationCenter defaultCenter] addObserverForName:finishedSubscription object:nil queue:[NSOperationQueue mainQueue] usingBlock:^(NSNotification *note) {
    //Creating request for posting the data
    SODataRequestParamSingleDefault* insertRequest = [[SODataRequestParamSingleDefault alloc] initWithMode:SODataRequestModeCreate resourcePath:@"CollectionName"];
                insertRequest.payload = entityForCreation; //Assigning the payload
                [self.onlineStore scheduleCreateEntity:entityForCreation collectionPath:@"Collection
    Name" delegate:self options:nil];
    //Alternatively you can use [self.onlineStore scheduleRequest:insertRequest delegate:self]; also instead of scheduleCreateEntity
    If you want to pass X-CSRF-Token with RequestBuilder, you can use the following code:
    //Create request for getting the token
          id<Requesting> request = [RequestBuilder requestWithURL:[NSURL URLWithString:[NSString stringWithFormat:endPoint_URL]]];
            /*Set user name */
            [request setUsername:[[NSUserDefaults standardUserDefaults] objectForKey:@"USERNAME"]];
            /*Set password */
            [request setPassword:[[NSUserDefaults standardUserDefaults] objectForKey:@"PASSWORD"]];
            /*Set the required request headers*/
            [request setRequestMethod:@"GET"];
            [odp_Request addRequestHeader:@"X-CSRF-Token" value:@"Fetch"];
            [odp_Request addRequestHeader:@"X-CSRF-Cookie" value:@"Fetch"];
            [request addRequestHeader:@"Content-Type" value:@"application/xml; charset=UTF-8"];
            [request addRequestHeader:@"X-SMP-APPCID" value:applicationConnectionID]];
            [request addRequestHeader:@"X-SUP-APPCID" value:applicationConnectionID]];
            /*Set the delegate to receive the response */
            [request setDelegate:self];
            /*Set the success listener */
            [request setDidFinishSelector:@selector(tokenSuccess:)];
            /*Set the failure listener */
            [request setDidFailSelector:@selector(tokenFailed:)];
            /*Invoke the startAsyncronous API to send the request from client to server asynchronously */
            [request startSynchronous];
    //In the tokenSuccess method (- (void)tokenSuccess:(Request*)theRequest), you can use the following code to retrieve the token:
          token=[[theRequest responseHeaders]objectForKey:@"X-CSRF-TOKEN"];
           cookie=[[theRequest responseHeaders]objectForKey:@"SET-COOKIE"];
    //Create the request for posting your content to the server
                NSString* requestUrls = [NSString stringWithFormat:@"%@SalesOrders%@", endPoint_URL,filterString];  
                postRequest = [RequestBuilder requestWithURL:[NSURL URLWithString:requestUrls]];
                //             odp_Request = [ODPRequest requestWithURL:[NSURL URLWithString:requestUrls]];
                //id<SDMRequesting> request = [SDMRequestBuilder requestWithURL:[NSURL URLWithString: requestUrls]];
                [postRequest setUsername:[[NSUserDefaults standardUserDefaults] objectForKey:@"USERNAME"]];
                [postRequest setPassword:[[NSUserDefaults standardUserDefaults] objectForKey:@"PASSWORD"]];
                [postRequest setDelegate:self];
                [postRequest setRequestMethod:@"POST"];
                [postRequest addRequestHeader:@"content-type" value:@"application/atom+xml;type=entry"];
                [postRequest addRequestHeader:@"X-SMP-APPCID" value:applicationConnectionID]]; //Assinging the applicationConnectionID value to the request
                [postRequest addRequestHeader:@"X-CSRF-Token" value:token]; //Assinging the token value to the request
                [postRequest addRequestHeader:@"Cookie" value:cookie]; //Assinging the cookie value to the request
                [postRequest appendPostData:[xml dataUsingEncoding:NSUTF8StringEncoding]]; //Appending the body of the request
                [postRequest setDidFailSelector:@selector(updaterequestFailed:)]; //Failure delegate method
                [postRequest setDidFinishSelector:@selector(updaterequestFinished:)];  //Success delegate method
                [postRequest setTimeOutSeconds:200]; //Timeout for request
                [postRequest startSynchronous];
    Hope this will help you.
    Regards,
    Dhani

  • Use wmi methods with powershell to export packages

    I'm looking for a way to export packages from a ConfigMgr 2012 ( NOT SP1 ) instance using wmi and powershell. I am aware of the wmi classes under the namespace 'root\sms\XYZ_Site' but I can't find any classes with an 'export' method. 
    ( Please don't tell me to load the SP1 module )
    Many thanks! 

    Hi,
    Have you figured this out?
    Best Regards,
    Joyce Li
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Using common methods with abstract classes

    hello everyone, i wanted to know if it is bad practice (i imagine it is) to place methods which will be used by multiple classes (computational methods) in an abstract class and mark them as static. When i do this they are always project wide utility classes which dont need an instantiation. When using any of these methods which are common to a project i can then just use..
    Type result = ClassName.DoStaticMethod(...);Thanks for any input,
    Dori
    Edited by: Sir_Dori on Dec 8, 2008 2:01 AM

    Depends on what the methods are meant to do, but I wouldn't make the class abstract. I would instead declare it to be final and have a private constructor.
    Kaj
    Ps. Take a look at the java.lang.Match class.

  • Using a MergeSort with an Array List

    Hi. I'm working on a program that does a MergeSort using an array list. The user is asked to enter 2 arrays of increasing numbers, and my program will create a 3rd array that merges the 2 original ones.
    I think I've almost got it down, but I seem to be running into an OutOfBounds error, and I'm not sure why. I've tried changing the initial values of some of my variables to no avail.
    I'm kinda new to Java so be gentle.
    import java.util.ArrayList;
    import cs1.Keyboard;
    import java.util.*;
    public class MergeSort3
         public static void main (String[] args)
              ArrayList<Integer> ary1 = new ArrayList<Integer>();
              ArrayList<Integer> ary2 = new ArrayList<Integer>();
              ArrayList<Integer> ary3 = new ArrayList<Integer>();
              int input=0, count=0, ary1count=0, ary2count=0, temp=0;
              boolean ok=true;
              while(ok)
                   System.out.println("Enter integers in Array1 from smallest to largest. (-1 to stop): ");
                   input = Keyboard.readInt();
                   if(input==-1)
                        ok=false;
                   else
                        ary1.add(input);
              ok=true;
              while(ok)
                   System.out.println("Enter integers in Array2 from smallest to largest. (-1 to stop): ");
                   input = Keyboard.readInt();
                   if(input==-1)
                        ok=false;
                   else
                        ary2.add(input);
              System.out.println("Size of array 1: "  + ary1.size());
              System.out.println("Size of array 2: "  + ary2.size());
              int ary3size=ary1.size()+ary2.size();
              System.out.println(ary3size);
              while(count<ary3size)
                   if(ary1.get(ary1count)<=ary2.get(ary2count) && ary1count<ary1.size() && ary2count<ary2.size())
                        ary3.add(ary1.get(ary1count));
                        ary1count++;
                        count++;
                        System.out.println(ary3);
                   else
                        temp=ary2.get(ary2count);
                        ary3.add(temp);
                        ary2count++;
                        temp=0;
                        count++;
                   while(ary1count>=ary1.size() && ary2count<ary2.size())
                        ary3.add(ary2.get(ary2count));
                        ary2count++;
              System.out.println(ary3);
    }

    We can't run the program since you're using a non-standard class, csi.Keyboard.
    Reduce the problem to a program that only uses standard Java classes, post the new program, AND identify the line that's throwing the error (not just the line number!) and post the exact error message.

  • Help with using getLastChild() method with DOM

    Hello all,
    I have a XML doc that looks like this:
    <?xml version="1.0"?>
    <conf_rooms>
    <conf_room>
    <conf_id>8200</conf_id>
    <conf_name>Conf 1</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8201</conf_id>
    <conf_name>Conf 2</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8202</conf_id>
    <conf_name>Conf 3</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8203</conf_id>
    <conf_name>Conf 4</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8204</conf_id>
    <conf_name>Conf 5</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8205</conf_id>
    <conf_name>Conf 6</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8206</conf_id>
    <conf_name>Conf 7</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8207</conf_id>
    <conf_name>sdfsdf</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8208</conf_id>
    <conf_name>Conf 9</conf_name>
    </conf_room>
    <conf_room>
    <conf_id>8209</conf_id>
    <conf_name>Conf 10</conf_name>
    </conf_room>
    </conf_rooms>In my code I need to get the value of the <conf_name> element.
    Here is my code that successfully returns the <conf_id> element:
                        DocumentBuilderFactory factory = DocumentBuilderFactory.newInstance();
                        factory.setIgnoringComments(true);
                        factory.setCoalescing(true);
                        factory.setNamespaceAware(false);
                        factory.setValidating(false);
                        DocumentBuilder builder = factory.newDocumentBuilder();
                        document = builder.parse(file);
                        NodeList confrooms = document.getElementsByTagName("conf_room");
                        int is = confrooms.getLength();
                        for(int i=0;i<is;i++)
                            Element confroom = (Element) confrooms.item(i);
                            Node title = confroom.getFirstChild();
                            while(title != null && title.getNodeType() != Node.ELEMENT_NODE)
                                title = title.getNextSibling();
                            if(title != null)
                                    System.out.println(title.getFirstChild().getNodeValue());
                        }Now since my xml doc only has a <conf_id> and a <conf_name> I thought that if I replaced the following :
    Node title = confroom.getFirstChild();
    with
    Node title = confroom.getLastChild();
    it would return the value of <conf_name>
    Doesnt work, doesnt return any value.
    Any ideas or help would be greatly appreciated!!!
    TIA!

    Dr.Clap is right. You have to watch out for that. Here is what one of your conf_room nodes looks like:
        NODE:
          NAME: conf_room
          TYPE: element
          VALUE: null
          CHILDREN:
            NODE:
              NAME: #text
              TYPE: text
              VALUE:
            NODE:
              NAME: conf_id
              TYPE: element
              VALUE: null
              CHILDREN:
                NODE:
                  NAME: #text
                  TYPE: text
                  VALUE: 8209
            NODE:
              NAME: #text
              TYPE: text
              VALUE:
            NODE:
              NAME: conf_name
              TYPE: element
              VALUE: null
              CHILDREN:
                NODE:
                  NAME: #text
                  TYPE: text
                  VALUE: Conf 10
            NODE:
              NAME: #text
              TYPE: text
              VALUE:As you can see, the whitespace is in there as text nodes. When you replace getFirstChild with getLast child you get a reference to that last empty text node. Then, your while loop executed and tried to move to the next sibling, which is null.
    You could change your for loop to something like:
            for(int i=0;i<is;i++)
                Element confroom = (Element) confrooms.item(i);
                System.out.println("CONF ID: " + confroom.getElementsByTagName("conf_id").item(0).getTextContent());
                System.out.println("CONF NAME: " + confroom.getElementsByTagName("conf_name").item(0).getTextContent());
            }The other option would be to create a simple Schema for your XML. That way you can set factory.setIgnoringElementContentWhitespace() which will eliminate all those extra whitespace nodes (and insure your XML is valid).
    -Paco

Maybe you are looking for

  • Loops won't download

    Hello, I can see a list of all the loops, but they are grey, and not downloaded. What should I do?

  • FTP user accounts to access AEBS HD

    I am pretty new to apple and apple products so this maybe a no-brainer to some folk. I have an AEBS with a LaCIe HD attached and a Mac mini. I would like to set up user accounts to access the HD over the internet. I have been looking into FTP options

  • Living with the HDMI Logo Freeze

    As many of you using HDMI know, switching to the AppleTV sometimes causes a Logo freeze. For me this has been happening since upgrading to 2.x software. I use an HDMI switcher box (not ONKYO related) and have the ATV set to 1080p. I sometimes use the

  • Costing date field

    Hi, Can you tell me in which transaction code KEKO-KADKY(Costing Date (Key) field value will be available... Thanks in advance, RAhul

  • Using a BufferedReaderobject in a StreamTokenizer

    I can't seem to figure out how to use the BufferedReader object I have created (called input) as the source for a new StreamTokenizer. I do this StreamTokenizer adder = new StreamTokenizer(System.setIn(input)); and it says variable input not found in