Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Ruuts · Dec 03, 2014 at 07:38 PM · www4.6www class4.3

What has changed in the WWW class? What am I doing wrong?

I am switching up to Unity 4.6 from 4.3 (mainly to make use of the new UI). The game needs to get some JSON strings quite regularly from a server. But somehow the good old WWW class seems to be messing up.

All i get from WWW.text is: �

At first i thought it might be a encoding issue and tried a bunch of different System.Text.Encoding stuff without any success (yeah, I tried everything, even though I am sure that the server provides the JSONs in UTF8).

So to investigate further i decided to start a new project solely to test what is going on.

To keep it simple I try to fetch a UTF-8 text file containing "Hello World!"

 void Start () {
         string request = "http://wheremytestfile.is/test.txt";
         WWW www = new WWW (request);
         StartCoroutine (WaitForRequest (www));
     }
 
     IEnumerator WaitForRequest(WWW www){
         yield return www;
 
         if (www.error == null) {
             string wwwBytes = "";
             foreach (var b in www.bytes)
                 wwwBytes +=(b+" ");
             Debug.Log(wwwBytes);
             Debug.Log(www.text.Length);
             Debug.Log(www.text);        
         }
         else{
             Debug.Log(www.error);
         }
     
     }

what happens ist this:

Unity 4.3:

WWW.bytes: 239 187 191 72 101 108 108 111 32 87 111 114 108 100 33

WWW.text.Length: 13

WWW.text: Hello World!

Unity 4.6:

WWW.bytes: 31 139 8 0 0 0 0 0 0 3 123 191 123 191 71 106 78 78 190 66 120 126 81 78 138 34 0 88 34 224 15 15 0 0 0

WWW.text.Length: 35

WWW.text: �

I can even see, that the 71 106 78 78 190 66 120 126 81 78 138 34 part in the 4.6 results should be the Hello World! I am looking for, but quite obviously it's unreadable.

I have absolutely no clue what is going on and feel more noobish than I think I should.

Thank you for your help!

Comment
Add comment
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

2 People are following this question.

avatar image avatar image

Related Questions

IP blocked for pulling images using WWW class 1 Answer

Unity 2017 www bug? 1 Answer

Use the data received from WWW in UI 1 Answer

Unity WWW gzip 1 Answer

WWW not getting site that doesn't end on .html 1 Answer


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges