hungkm88 / serialized-php-parser

Automatically exported from code.google.com/p/serialized-php-parser
0 stars 0 forks source link

Error: java.lang.IllegalStateException: Encountered unknown type [}] #3

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Hi, sorry for my english.))
I'am usinng serialized-php-parser-0.3 and have error when i am trying to parse 
the file in attach(3_Ser.txt).

this is the code

FileReader fr = new FileReader("C:\\3_Ser.txt");
            BufferedReader br  =new BufferedReader(fr);
            String str_Buffer= new String();
            String str_ForParse = new String();
            while((str_Buffer=br.readLine())!=null){
                str_ForParse+=str_Buffer;
            }

            Map results = (Map)new SerializedPhpParser(
                    str_ForParse, false).parse();

Original issue reported on code.google.com by shtut...@yandex.ru on 23 Jan 2011 at 9:15

Attachments:

GoogleCodeExporter commented 8 years ago
File serialized not correctly. I was not able to deserialize it in the same 
PHP. Are you sure that the information provided by you is correct? If yes, 
please give an example of PHP code that demonstrates how to deserialize the 
data you provide. My example, not being able to deserialize the data:
$ str = implode ('', file ("3_Ser-1.txt"));
echo $str;

$ str = unserialize ($str);
print_r ($str);

Файл сериализован не корректно. Я не смог 
его десериализовать в том же PHP. Вы уверены, 
что данные, предоставлены вами корректны? 
Если да, то прошу привести пример PHP кода, 
демонстрирующий десериализацию данных, 
предоставленных вами. Мой пример, что не 
смог десериализовать данные:
$str=implode('', file("3_Ser-1.txt"));
echo $str;

$str=unserialize($str);
print_r( $str);

Original comment by forpdfse...@gmail.com on 1 Jul 2011 at 9:31