“Java długości sznurka” Kod odpowiedzi

Jak uzyskać szerokość i wysokość sznurka w Javie

String text = "Hello World";
Font font = new Font("Arial", Font.PLAIN, 12);
FontRenderContext frc = new FontRenderContext(new AffineTransform(), true, true);

int textwidth = (int)(font.getStringBounds(text, frc).getWidth());
int textheight = (int)(font.getStringBounds(text, frc).getHeight());
FossilFind

Java długości sznurka

String yourName = "Ben";
int yourNameLength = yourName.length(); // 3

// String Length is counted as 1,2,3 and not from zero. 
// Results "BEN" = 3, "DAVID" = 5, etc.
Irakli Gikashvili

Scala długość sznurka

var palindrome = "Dot saw I was Tod";
var len = palindrome.length();
UnAngeloCheSiChiamaTheKing

Java długości sznurka

import java.awt.Font;
import java.awt.font.FontRenderContext;
import java.awt.geom.AffineTransform;

...

String text = "Hello World";
AffineTransform affinetransform = new AffineTransform();     
FontRenderContext frc = new FontRenderContext(affinetransform,true,true);     
Font font = new Font("Tahoma", Font.PLAIN, 12);
int textwidth = (int)(font.getStringBounds(text, frc).getWidth());
int textheight = (int)(font.getStringBounds(text, frc).getHeight());
Toti

Uzyskaj długość struny Java

class Main {
  public static void main(String[] args) {

    // create a string
    String greet = "Hello! World";
    System.out.println("String: " + greet);

    // get the length of greet
    int length = greet.length();
    System.out.println("Length: " + length);
  }
}
SAMER SAEID

Odpowiedzi podobne do “Java długości sznurka”

Pytania podobne do “Java długości sznurka”

Więcej pokrewnych odpowiedzi na “Java długości sznurka” w Java

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu