Weird String

Hi all
I have a strange problem for which I cannot find an easy answer.
I have a code similar to this:
char c = '\u0002';
String str = c + "blabla";
In the original context of this code the str variable completely ignores the starting character c.
However if I enter a dummy string in front of it:
String str = "" + c + "blabla";
then str is exactly as it should be.
I have tried to reproduce the error in a test environment but everything behaves as it should.
Is there any weird issue around String? Is there any reason why c should not enter the String definition the way the programmer wants it?

hey i try it. and String str = "" + c + "blabla"; prints out exactly the same with str = c + "blabla";
public class WeirdString {
     public static void main(String[] args) {
          char a = '\u0002';
          System.out.println(a);
          System.out.println(a + "bla bla");
          System.out.println("" + a + "bla bla");
}this is the ouput:
bla bla
bla blanothing wrong/weird with the String.
at your place, maybe your console can't print out '/u0002' cos it's not printable character... (maybe)

Similar Messages

  • Weird   String[][] issue

    Hey all ,
    Just need some help for this bidimensional Array .
    I just want to do x [20][15] = "j";
    But the ouput shows position x[0][0] also with "j" and not with "."
    here it's the code:
    public void desenhaquadro(String [][] x){
              for(int i =1; i != x.length; i++){
                   for(int j= 1; j != x.length; j++){
                        if(x[i][j] == x[20][15]){
                             System.out.print(x[20][15] = "j");                         
                        }else System.out.print(x[i][j] = ".");
                   } System.out.println();
    thanks

    public class Tabuleiro {
         public void drawboard(String[][] x) {
              for (int i = 0; i != x.length; i++) {
                   for (int j = 0; j != x.length; j++) {
                        if (i == 20 && j == 15) {
                             x[i][j] = "L";
                             System.out.print(x[20][15]);
                        } else
                             System.out.print(x[i][j] = ".");
                   System.out.println();
         public static void main(String[] xxx) {
              Tabuleiro tabu = new Tabuleiro();
              final int numLines = 28;
              final int numColu = 48;
              String[][] y = new String[numLines][numColu];
              tabu.drawboard(y);
    This works for me. Part of the problem is you are using == to compare strings when you do
    if(x[i][j] == x[20][15])the other problem is that since you have not populated the array, every element in the array is null, so even if you do x[i][j].equals(x[20][15]) it will give you the wrong answer.
    Message was edited by:
    SomeoneElse
    Message was edited by:
    SomeoneElse

  • Weird string to array results

    private int[] parseGuessString(String guessStr)
    String temp = "";
    int length = guessStr.length();
    for(int i = 0; i < length; i++)
    guess[i] = guessStr.charAt(i);
    some reason when I output the guess array, it outputs 49 where a 1 (if thats what guessStr contains) should be, a 50 where a 2 should be...and so forth.
    I have no clue where it is getting these numbers from. Any ideas? Thanks
    Edited by: ollie88r on Apr 26, 2008 1:23 AM
    Edited by: ollie88r on Apr 26, 2008 1:24 AM

    got it
    private int[] parseGuessString(String guessStr)
            char temp;
            String temp2;
            int num = 0;
            int length = guessStr.length();
            for(int i = 0; i < length; i++)
               temp = guessStr.charAt(i);
               temp2 = "" + temp;
               num = Integer.parseInt(temp2);
               guess[i] = num;
            for(int i = 0; i < length; i++)
                System.out.println(guess);Don't know if that is the most elegant way to do it, but it works. If anyone has a better way that would be great. Thanks for the help Darryl Burke                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Problem in outputting a string into a file

    Hi guys,
    I tried to output a string to a file. The string is 'Size : 30u201D X 13 ½u201D X17 ¾u201D(H)'.
    However, with this code :
    l_file = '/erp/reports/testgk.txt'.
    l_str = 'Size : 30u201D X 13 ½u201D X17 ¾u201D(H)'.
    OPEN DATASET l_file FOR OUTPUT IN TEXT MODE ENCODING DEFAULT.
    TRANSFER l_str TO l_file.
    It returned me a weird string: 'Size : 30M-bM-@M-] X 13 M-BM-=M-bM-@M-] X17 M-BM->M-bM-@M-](H)'
    Would you please let me know how to solve this problem?
    Thanks, gk

    Hello gk,
    I tried this code & works fine for me though:
    DATA: v_data TYPE string VALUE ' 30u201D X 13 ½u201D X17 ¾u201D(H)',
          v_file TYPE string VALUE
                  '\glbwi720InterfaceID2100I_MB_207INsdn.txt'.
    OPEN DATASET v_file FOR OUTPUT
    IN TEXT MODE
    ENCODING DEFAULT.
    IF sy-subrc = 0.
      TRANSFER v_data TO v_file.
      CLOSE DATASET v_file.
    ENDIF.
    Looks like the "usual" ENCODING problem
    BR,
    Suhas

  • Strange repeating strings in multiple files possible virus?

    A few months ago when I ran netstat I noticed about 10 TCP ports that said: Local Address [::]:5000, Foreign Address [::]:0, all were just listening. I ran the netstat with -noa to get the PIDs and resolved the issue, but when I started digging around in
    some files I started to notice something weird.
    In probably around 100 files there are these repeating strings. A few of them are: @VWATAVH, WATAUH, SUVWH, @UATAUAVAWH, SVWATH, @SUVWATAUAVAWH...
    I use a program called Bintext that lets me see all of the strings inside a file. After seeing these strings repeatedly I realized that I have some kind of trojan/virus/keylogger/whatever. I have found these same strings in files going back to 2010 up until
    the most recent around a week ago.
    I finally did a comparison tonight of the file ntdll.dll and I was shocked at the difference of the two files. I downloaded another copy of ntdll.dll from dll files.com. The original file from my computer is 1.23MB and version 6.1.7601.17725. The other file
    which hasn't been changed is 1.65MB and version 6.1.7601.17725, the exact same version as the one I already had.I
    I used the program bintext to make text files of the two files, then I used the website diffchecker.com to compare the two files. Check it out: https://www.diffchecker.com/dl8jqoye (I couldn't do a link until my account is verified)
    Some of the other files that are suspect are: comct32dll, crypt32dll, exe_94123cfe, iwrapexe, unsexe, Riconman, ntdll, and so many others I ran across before I started keeping track. Most of the files that contain these weird strings also reference a small
    group of other files as well: wbemcomn.dll, ntdll.dll, msvcrt.dll, KERNEL32.DLL, RPCRT4.dll, USER32.DLL, advapi32.dll, and unsecapp.dll.
    I have tried MANY malware and virus programs, I had norton installed on all of my machines since I bought them, and nothing can detect anything. So at this point I don't know if I am out of my mind or if there is some kind of crazy ass mega trojan living
    on my laptop.
    I also found a file at one point that had code for flashing my eeprom which vanished off my computer the next day. I have no idea where to go from here but to get a new computer.
    Yesterday a file called TCPSVCS.EXE started making ports 7, 9, 13, 17 and 19 on both TCP and UDP. It doesn't contain any of the weird strings but it makes reference to ntdll.dll, msvcrt.dll, KERNEL32.DLL, RPCRT4.dll, USER32.DLL, and advapi32.dll.
    There are also around 30 local TIME_WAIT connections starting at TCP port 51548 and then going higher which are being created by the system idle process.
    So am I out of my mind and all of this is normal or has something infected my computer? I get the feeling someone has been logging in remotely but for the most part nothing bad has happened to the computer so I have no idea.
    Thanks for any help!

    Do you have a restore point ?
    Arnav Sharma | http://arnavsharma.net/ Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading
    the thread.

  • UTF-8 encoding trouble

    I need to use UTF8 encoding throughout a site. For that purpose, I have the following
    tags on JSP:
    <%@ page contentType="text/html; charset=UTF-8" %>
    <meta http-equiv="Content-Type" CONTENT="text/html; charset=UTF-8">
    Next, in my weblogic.xml, I have the following:
    <jsp-param>
         <param-name>encoding</param-name>
         <param-value>UTF8</param-value>
    </jsp-param>
    <charset-params>
    <input-charset>
    <resource-path>*.jsp</resource-path>
    <java-charset-name>UTF8</java-charset-name>
    </input-charset>
    </charset-params>
    Having configured this, I have two simple JSP files. The first one submits a field
    (whose contents I enter in Greek), and the second page writes them to a file. The
    code for writing to a file looks like this:
    FileOutputStream of = new FileOutputStream (fileName, false);
    OutputStreamWriter ow = new OutputStreamWriter (of, "UTF-8");
    ow.write (request.getParameter("test"));
    When I enter the Greek character Alpha as input, the file has a weird string +I in
    it. To fix the problem, I did the following (and it works):
    String s = request.getParameter ("TestName");
    byte b[] = new byte [5000];
    b = s.getBytes ();
    s = new String (b, "UTF-8");
    writeToFile (s);
    Which means that for some reason, the page gets the right String, but it seems to
    be encoded with default encoding (not UTF8). When I convert it into bytes, and create
    another String using the same byte-stream but a different encoding, what I get is
    correct UTF-8 encoded string. Please also note that the same problem occurs with
    DB as well (Oracle 8.1.7 with UTF8 on Win2k), and fixing the above code fixes problem
    at both file and database level.
    Rather than the above workaround, what's the proper way to accomplish this?
    Thanks,
    Raja

    In GlassFish i have changed this now below here. Under each listeners both for Network Listeners and Protocols there are an HTTP tab and under that one i have change this,
    Network Config
    Network Listeners
    http-listeners-1
    http-listeners-2
    admin-listeners
    Protocols
    http-listeners-1
    http-listeners-2
    admin-listeners
    URI Encoding: UTF-8
    Default Response Type: text/plain; charset=UTF-8
    Forced Response Type: text/plain; charset=UTF-8
    So when i run curl in a terminal window i get this response:
    Macintosh:~ jespernyqvist$ curl -I http://neptunediving.com/neptune/index.jsp
    HTTP/1.1 200 OK
    Date: Mon, 17 May 2010 04:14:17 GMT
    Server: GlassFish v3
    X-Powered-By: JSP/2.1
    Content-Type: text/html;charset=UTF-8
    Content-Language: en-US
    Transfer-Encoding: chunked
    Set-Cookie: JSESSIONID=478269c08e050484d1d6fa29fc44; Path=/neptune
    As you can see now my HTTP Header is looking good, no more charset=iso-8859-1. The only problem i have here is that there is no space in between text/html;charset=UTF-8. I think this should be like this instead or not, text/html; charset=UTF-8? I have noticed that they are very case sensitive so maybe this is a problem for me?
    On top of my header i have this;
    <%@page import="com.neptunediving.*"%>
    <%@include file="WEB-INF/include/LangSupport.jsp"%>
    <%@page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
    In my header i have this;
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    I have changed in the preferences for Eclipse to use UTF-8. I have gone thru all properties files in my project and changed them to UTF-8 also. So what else are they to change?
    Still my page is nor displayed properly, now in all browsers like Safari, Firefox, Opera and Internet Explorer. So what is wrong with my page since this don't work for me? Can anybody please explain this to me?

  • When i click on links in other programs, where the link should automaticly open in firefox, nothing happens. Firefox is my primary.

    Example:
    software for games, where developers post headlines for news. Those are actualy hyperlinks, and should automaticly open in firefox, when customer clicks on the headline. When i click on a headline, nothing happens. They just stopped working a while ago, which is pretty frustrating. Firefox is my primary web browser.
    Please help, becouse I've searched and never found a solution for this issue.
    Looking forward to your answer, thank you for reading this!

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • When I click on links in my e-mail, I get the Start Page instead of the link page

    Hello:
    When I click on an e-mail link, I get my Start Page instead of the
    Link Page. My e-mail is Thunderbird and my default browser is
    Firefox.
    Thanks

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • I get a general failure when I click on links in my email. This happens more frequently now that I've downloaded the latest version of Firefox. Very annoying. Help!!!

    I get a general failure when I click on links in my email. "General Failure" is followed by a link and I have to click ok to get rid of it. This happens every time I click on a link in my email. I've turned my computer on and off several times, but it persists. It's very annoying and I'm considering returning to Internet Explorer because of it.

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • [CS5][JS] Add Glyph for special 'e' characters?

    Hello,
    I've got an InDesign script that adds text to a text frame like so:
    myTextFrame.insertionPoints[-1].contents = ' The café...';
    The problem is that InDesign renders the acute accent 'e' character incorrectly and inserts other special characters. I think I should be able to use glyphs, but I'm not sure how to do it within a script? Is there an easy way to insert that glyph character?
    Many thanks in advance!
    -Lloyd

    Hi,
    As John suggested, it is almost certainly a character encoding issue at script-editing level. I have similar troubles when I deployed my first scripts for Mac + Win platforms—there was always users who got degenerate UTF8. Since I'm not an expert in cross-OS character encoding, I decided to never use non-ASCII characters in my script. This is a radical solution, I admit, but my scripts never more displayed weird © strings and so.
    Any Unicode string can be easily expressed in ASCII JavaScript using "\xHH" or "\uHHHH"—which is simpler than String.fromCharCode(0xHHHH).
    E.g.:
    myTextFrame.insertionPoints[-1].contents = "The caf\xE9...";
    Etc.
    @+
    Marc

  • Can't use Firefox now that I've downloaded the new version!

    I downloaded the new version of firefox, and now when I click to get online it says that I am working offline and won't let me get online. I love firefox, but this is ridiculous!

    This is a known bug, and has been for years. It occurs when Firefox is your default browser and some glitch (or program) changes that default. Thankfully, there's a fairly easy fix, though it does involve monkeying around in the Registry.
    (Note: These instructions apply to Windows Vista and 7 only.)
    1. Click Start, type regedit, and then press Enter.
    2. Navigate to the following entry: HKEY_CLASSES_ROOT\FirefoxURL\shell\open\ddeexec
    3. In the center pane, double-click the Default entry, then remove whatever value is there (it'll probably be a weird string of numbers and commas).
    4. Click OK, then exit Regedit.
    5. If Outlook and/or Firefox are open, close them, then restart them.
    this information was found at[[ http://www.pcworld.com/article/200103/fix_outlook_general_failure_error_for_email_links.html]]
    I am using windows 7 pro this issue has drove me crazy for some time, now finally it's fixed by doing the exact same steps as above, hope this works for everybody that is having this problem. I just had to share this with my fellow firefox users. :)

  • Can message filters cause messages with blank subject and 1969 dates

    I have done many things to try to trace why I get messages with blank subjects and 1969 dates.
    downloaded TB
    created all new folders
    moved only persdict and msfFilterRules to the new profile.
    At this try
    set the option NOT to download messages on startup
    went off line and compacted all folders.
    emptied the inbox and all subfolders.
    Exited TB.
    deleted all files under pop.verizon.net except msgFilters rules.
    Deleted all msf files for local folders in my profile.
    opened TB.
    a few times
    --With Firefox went to verizon webmail and moved a few messages to the Verizon inbox.
    --moved to TB window
    -- Clicked <get messages>
    -- still received blank messages with 1969 dates
    -- deleted those messages
    -- emptied trash
    went to the filter rules and unclicked all filters that send files to local folders
    left 2 rules in place
    (1) if a sender was in my address list send the message to inbox folder called "Known sender"
    (2) if the subject was NOT a weird string like "&*%$@!+=?><" send the message to inbox folder called "Suspicious" This filter is because there is not an ELSE function in TB it is extremely unlikely that a message would have such a subject.
    [These two filters should move all messages except junk to the two folders.]
    I then tried the above procedure of going to Verizon, moving messages to Verizon Inbox, etc. a few times.
    I did NOT get the messages with blank subject and 1969 date!!
    Questions:
    (1) Is this just a fluke?
    (2) From understanding the internals of TB is it reasonable that some now-unchecked message filter(s) had caused there to be the oddball messages?
    (3) if It is a filter rule, how can I find out which one it is?

    I looked though all the condition specification options I do not see how using header info in a condition specification would '''change '''the header info.
    I looked at the possible actions on filters.
    I only see "tag" and "Star" as ones that might change header info.
    However, I found out that when I unchecked the first 17 of 19 filters and just had the two I explained above I would sometimes get a message with the 1969 date.
    Since then I deleted those two rules and made new versions and moved them to the bottom where the earlier versions had been. I have not had the 1969 messages since!!
    I have put a new filter at the top of the list that checks whether the date is before 1/1/971. If teh date is before 1/1/1971 the filter tags the message as important and moves it into the inbox folder named "Suspicious".
    I have not seen any 1969 messages since then.
    Since the problem was intermittent and because I was not able to create conditions whereby The 1969 dates would or would not occur, the problem may not be 'fixed'. I'll watch it for a while
    Meanwhile, I'll continue to manually go though the webmail on Verizon and as a test only download mail that I do not want to save for the long term. Messages I want to keep I'll move messages I want to keep for the long term into foldrs on Verizon. '''If '''after a while, I do not get any more of the 1969 messages, I'll move messages I want to keep into the Verizon inbox and download them into TB

  • Why is iTunes not showing mt MP3 album artwork?

    I noticed after the latest iTunes update that most of the artwork I manually added in the last year to songs has gone missing. About a year ago I began adding new songs using the MP3 encoder. Previous songs were all loaded as AAC files. The AAC files all are fine. The artwork image still shows on the MP3 file icon in windows explorer so I assume it is still embedded in the file.
    Deleting and re-adding the file back into iTunes doesn't help.
    The Comments info box for the problem files also now includes a weird string of code that wasn't there before.
    00000000 00000210 00000ACC 000000000075C224 00000000 00355D39 00000000 00000000 00000000 00000000 00000000 00000000
    Finally, I noticed the iTunes folder now has an Album Artwork folder in it and It contains two folders Local and Download in it. I don't remember these from prior versions of iTunes. I could be wrong?
    My guess is iTunes changed the way it keeps track of artwork in files and re-organized itself from older versions, but had a problem with MP3 files. It then put a notation in comments and stopped showing the embedded artwork.
    Does anyone know what's going on here.

    I've always assumed those silly strings were recording the results of the gapless playback analysis but whatever they're for it would be better if they were stored in a spare field.
    Windows Media Player/Windows Explorer may be less fussy on embedded artwork formats than iTunes or the media file might actually be missing the art but the Windows Explorer cache (Thumbs.db) still shows it. You say removing-reimporting doesn't help but I assume you can still paste new artwork in and have it remembered. If so you might want to use the following tool to at least take some of the effort out of searching out which tracks you need to repair.
    *How to find tracks without artwork*
    To find all the tracks without artwork so that you can update them you can try http://www.stum.de/itunes-find-tracks-without-artwork/ for Windows or http://dougscripts.com/itunes/scripts/scripts13.php for Macs. Use Google, Amazon, Discogs etc. to locate relevant jpeg images. Ideally these should be square, 320x320 pixels or above and borderless to give the best results in the various menus. If you have artwork for some tracks of an album, but not others, select a track with artwork, right-click (Option-Click for Macs) on the art & click copy, then select all the tracks of the album, use CTRL-I or Command-I to *Get Info* and then paste the image into the artwork box.
    I say 320x320 because I believe (from using TouchCopy) that it's the size used in the iPod cache so if you're going to crop or resize you might as well work to that size. Otherwise 200x200 is probably good enough.
    tt2

  • Need some help with java documents if possible

    Hello all,
    I am trying to decompile .class files ok, i decompile it without any problems but when i open the java source i see weird string codes, and its not readable for the human, i tried lot of decompiling softwares but no software can make the file readable this is the problem that i have:
    // Decompiled by Jad v1.5.8g. Copyright 2001 Pavel Kouznetsov.
    // Jad home page: http://www.kpdus.com/jad.html
    // Decompiler options: packimports(3)
    // Source File Name:   b.java
    package com.pimpernel.a.a.a;
    import com.pimpernel.chatpointclassic.client.a.e;
    import java.io.DataOutputStream;
    import java.io.PrintStream;
    import java.util.*;
    // Referenced classes of package com.pimpernel.a.a.a:
    //            a, e
    public class b
        implements Runnable
        b(a a1, a a2, DataOutputStream dataoutputstream, com.pimpernel.a.a.a.e e1)
            a = a1;
            b = 2000;
            c = 50;
            d = 4;
            o = -1L;
            e = a2;
            f = dataoutputstream;
            g = e1;
            j = new Vector();
            h = c;
        b(a a1, a a2, DataOutputStream dataoutputstream, com.pimpernel.a.a.a.e e1, Properties properties)
            int i1 = a.ev;
            super();
            a = a1;
            b = 2000;
            c = 50;
            d = 4;
            o = -1L;
            b = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036d\"+\n\013C'#\n6V6"), 20000);
            c = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036d\"+\n\013C'#\n6^ "), 50);
            d = a(properties, c("-!\001\025R-:\006\024Y\035+\001\037f;+\032\036z' <\036Y*\037\032\036B+\f\n\035X<+?\tX-+\034\b^ )"), 4);
            e = a2;
            f = dataoutputstream;
            g = e1;
            j = new Vector();
            h = c;
            if(e.i != 0)
                a.ev = ++i1;
        public int a(Properties properties, String s, int i1)
            try
                return Integer.parseInt(properties.getProperty(s));
            catch(Exception _ex)
                return i1;
        public void a()
            c();
            j.removeAllElements();
            f = null;
            j = null;
        public void b()
            if(i == null)
                k = System.currentTimeMillis();
                m = 0;
                n = 0;
                i = new Thread(this, c("\007\034,(R *>\016R;+"));
                i.start();
        public void c()
            if(i != null)
                i.stop();
                i = null;
        public void a(String s)
            j.insertElementAt(s, 0);
        public void b(String s)
            a(s.length());
            if((com.pimpernel.a.a.a.a.b(a) & 0x10) == 16)
                System.out.println(c("\036<\006\024E':\026[z+=\034\032P+n<\036Y*tO") + s);
            o = 0L;
            try
                if(f != null)
                    synchronized(f)
                        f.writeBytes(s + c("CD"));
                        f.flush();
            catch(Exception exception)
                if(e.eo)
                    if((com.pimpernel.a.a.a.a.b(a) & 1) == 1)
                        System.out.println(c("\0136\f\036G:'\000\025\027' O\bR *>\016R;+U[") + exception);
                    try
                        com.pimpernel.a.a.a.a.c(e);
                    catch(Exception _ex) { }
        public void a(int i1)
            if((com.pimpernel.a.a.a.a.b(a) & 4) == 4)
                m++;
                n += i1;
                l = System.currentTimeMillis();
                if(l - k > 10000L)
                    long l1 = l - k;
                    k = l;
                    if(com.pimpernel.a.a.a.a.a(a) == null)
                        com.pimpernel.a.a.a.a.a(a, new Date());
                    com.pimpernel.a.a.a.a.a(a).setTime(l);
                    System.out.println(c("ccB") + com.pimpernel.a.a.a.a.a(a).toString() + c("ccB"));
                    System.out.println(c("\001;\033\034X' \b[z=)OT\027=+\f[\nn") + (long)m / (l1 / 1000L));
                    System.out.println(c("\001;\033\034X' \b[u7:\n\b\027an\034\036TnsO") + (long)n / (l1 / 1000L));
                    m = 0;
                    n = 0;
        public void run()
            int i1;
            i1 = a.ev;
            o = 0L;
            if(i1 == 0) goto _L2; else goto _L1
    _L1:
            try
                Thread.sleep(h);
            catch(Exception _ex) { }
            o += h;
            j.size();
            d;
    _L9:
            JVM INSTR icmple 73;
               goto _L3 _L4
    _L3:
            if(g != null)
                g.a(j);
    _L4:
            if(j.isEmpty()) goto _L6; else goto _L5
    _L5:
            String s = (String)j.lastElement();
            a(s.length());
            if((com.pimpernel.a.a.a.a.b(a) & 8) == 8)
                System.out.println(c("\037;\n\016Rn=\006\001RnsO") + (j.size() - 1) + c("n\035\n\025Stn") + s);
            synchronized(f)
                f.writeBytes(s + c("CD"));
                f.flush();
            o = 0L;
            j.removeElement(j.lastElement());
            h = h << 1;
            if(i1 == 0) goto _L7; else goto _L6
    _L6:
            h = h >> 1;
    _L7:
            if(h > b)
                h = c;
            if(h < c)
                h = c;
            if(e.ed && o >= 10000L)
                a(c("\036\007!<\027="));
                o = 0L;
            continue; /* Loop/switch isn't completed */
            Exception exception;
            exception;
            if(!e.eo)
                continue; /* Loop/switch isn't completed */
            com.pimpernel.a.a.a.a.b(a) & 1;
            1;
            if(i1 != 0) goto _L9; else goto _L8
    _L8:
            JVM INSTR icmpne 387;
               goto _L10 _L11
    _L10:
            break MISSING_BLOCK_LABEL_362;
    _L11:
            break MISSING_BLOCK_LABEL_387;
            System.out.println(c("\0136\f\036G:'\000\025\027' O\bR *>\016R;+U[") + exception);
            try
                com.pimpernel.a.a.a.a.c(e);
            catch(Exception _ex) { }
    _L2:
            if(e.eo) goto _L1; else goto _L12
    _L12:
        private static String c(String s)
            char ac[] = s.toCharArray();
            int i1 = ac.length;
            int k1;
            for(int j1 = 0; j1 < i1; j1++)
                switch(j1 % 5)
                case 0: // '\0'
                    k1 = 0x4e;
                    break;
                case 1: // '\001'
                    k1 = 78;
                    break;
                case 2: // '\002'
                    k1 = 111;
                    break;
                case 3: // '\003'
                    k1 = 123;
                    break;
                default:
                    k1 = 55;
                    break;
                ac[j1] ^= k1;
            return new String(ac);
        a a;
        private int b;
        private int c;
        private int d;
        private a e;
        private DataOutputStream f;
        private com.pimpernel.a.a.a.e g;
        private int h;
        private Thread i;
        private Vector j;
        private long k;
        private long l;
        private int m;
        private int n;
        private long o;
        private final int p = 10000;
    }can some body help me and tell me how i can read that strange codes:
    System.out.println(c("\037;\n\016Rn=\006\001RnsO")
    :S?
    i am sorry because i am on the wrong forum.
    i hope someone can help me.
    Sorry for my bad english!
    Greetings,
    Nino_M

    This forum is for Sun Java Studio Creator questions.

  • ISE - DHCP SPAN and DHCP Profiling

    Hi everyone,
    We're embarking on an evaluation of ISE and trying to clarify my thoughts around the DHCP based profiling probes.
    If we are using DHCP SPAN and have all DHCP traffic mirrored to ISE, should we still use IP helpers and the DHCP probe?
    I would expect if we're using DHCP SPAN and mirroring all the traffic then using the DHCP probe with IP helpers on floor switches is a little redundant.
    Thanks,
    Mark

    Hi,
    Just to add from my experience;
    I am deploying ISE for the first time, I have around 100 sites ( I only use ISE+WLC 7.3, NO WIRED).
    It's good to forward all dhcp request to ISE with IP-HELPERS before deploying.
    This is what I did with one of my sites and I had no problem when they switched over as 90% of devices were already profiles using dhcp probe
    Hope to help.
    P.s note that WLC 7.3 does send first http packet to ISE but only if you opened up safari first after authentication, if you opened any other application that uses http protocol it will send weird strings to ise, ie VIBER and so on.
    Look around i've posted a thread about it

Maybe you are looking for

  • More than one outbound interface for the webservice scenario

    Hi Experts, Is it possible to have more than one outbound interface for the Webservice synchronous scenario? I have tried it , but I couldn't implement it. I would like to have your suggestions. Regards Sara

  • Getting appmod reference in UIX controller class

    Hi, I tried using ServletBindingUtils.getApplicationModule(BajaContext) method in a static method in UIX controller class to get the reference of application module defined in UIX page. But i am getting null. How can i get the reference of view and a

  • Biron 64 Hello, can you help me? I want transfer photos from PC to i Pad?

    Biron 64, Hello, Je voudrais transférer des photos de mon PC sur mon iPad, Merci de me donner la marche à suivre

  • BW 0HR_PA_2 - 3 Update rules assignment for 0PA_DS02 - 3

    Hello experts I am just another one tryng to figure out how to assign the update rulesfor DSO's  0PA_DS02 and 3. The business content activation of the update rules yields a no update type of rule. So I guess we need to assign the fields manually. I

  • Price Rounding

    Hi Gurus, Basic Price PR00- rounding up 1 Rupee more. And similarly for JCEP and ZSEC its rounding 1INR less. It is behaving strangely. In one case, it is calculating all values perfectly. Second case only Ecess is rounding 1INR more and Third case,