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
1
Question by Guardian2300 · Apr 17, 2013 at 07:34 AM · javascriptsavesystemiostreamreader

System.IO in javascript

Ive looked online and doesn't have much detail on using the StreamWriter or StreamReader in javascript language only in c# and c++. Does anyone have any examples I can look at so I can understand how to make it work. What I want to use it for is I have several variables that I want to write into a txt file. Its basically a data structure that I am looking to create from using StreamWriter. Example is I have multiple users that can have access to there records like username,firstname,lastname. Now when I want to search for a specific username how would I access there information in txt file. I was thinking designing it by this example (username,firstname,lastname). Any help of understanding IO would be greatly appreciated.

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

1 Reply

· Add your reply
  • Sort: 
avatar image
0
Best Answer

Answer by Graham-Dunnett · Apr 17, 2013 at 10:31 AM

When using Javascript pretty much all of the .Net classes work exactly the same, you just need to remember you are working in JS and not c#, so things like variable declarations need to change. Taking the MSDN StringWriter example you end up with:

 #pragma strict
 import System.IO;
 
 function Start () {
     var dirs : DirectoryInfo[] = new DirectoryInfo("/Users/graham").GetDirectories();
     var sw : StreamWriter = new System.IO.StreamWriter("DriveDirs.txt");
     sw.WriteLine("Found the following folder:");
     for (var dir : DirectoryInfo in dirs){
         sw.WriteLine(dir.Name);
     }
     sw.Close();
     
     var sr : StreamReader = new System.IO.StreamReader("DriveDirs.txt");
 
     Debug.Log(sr.CurrentEncoding);    
     var line : String;
     
     while (!sr.EndOfStream) {
         line = sr.ReadLine();
         Debug.Log(line);
     }
 }
Comment
Add comment · Share
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

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

12 People are following this question.

avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image avatar image

Related Questions

simple checkpoint/save/load system in javascript 4 Answers

Adjusting system audio levels... Please help! 1 Answer

AI Path and respawn help!!! 0 Answers

Prevent users from opening external data files 2 Answers

Not loading an object if it have be retained from a previous scene. 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