Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6809591
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T20:06:16+00:00 2026-05-26T20:06:16+00:00

Because I’m using non-latin alphabet, if I use StreamWriter, the characters aren’t correct. String

  • 0

Because I’m using non-latin alphabet, if I use StreamWriter, the characters aren’t correct.

        String line;
        StreamReader sr = new StreamReader(@"C:\Users\John\Desktop\result.html");
        line = sr.ReadLine();
        while (line != null)
        {
            line = sr.ReadLine();
            if (line.Contains("</head>"))
            {
                line = "<img src=\"result_files\\image003.png\"/>" + line;
            }
        }
        sr.Close();

Here I’m editing the string I want to edit in the file, but I’m not saving it in the same file. How to do that?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T20:06:17+00:00Added an answer on May 26, 2026 at 8:06 pm

    If you use one of the StreamWriter constructors that accepts an encoding you shouldn’t have any problems with incorrect characters. You are also skipping the first line in your reading method.

    Encoding encoding;
    StringBuilder output = new StringBuilder();
    using (StreamReader sr = new StreamReader(filename))
    {
        string line;
        encoding = sr.CurrentEncoding;
        while ((line = sr.ReadLine()) != null)
        {
            if (line.Contains("</head>"))
            {
                line = "<img src=\"result_files\\image003.png\"/>" + line;
            }
            output.AppendLine(line);
        }
    }
    using (StreamWriter writer = new StreamWriter(filename, false, encoding))
    {
        writer.Write(output.ToString());
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Because I'm currently setting up a new server for use, I've been using a
Because I'm not using .net 4 I can't use StringLength.MinimumLength property. What is alternative?
Because we use orbeon xforms, we don't know the id of the button tag.
Because of the way in which YES/NO are defined, you cannot use YES/NO with
Because xlsx file may contain million rows, I decided to use poi event model,
Because of a CMS software that I'm using I need to add a .*
I want use html5's new tag to play a wav file (currently only supported
Because of a driver problems using XFillPolygon with StippleFill and a pixmap is extremly
Because form_authenticity_token is used to validate requests, is it redundant to use it when
Because of the nature of new project we are about to start, I need

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.