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 7910761
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T12:59:28+00:00 2026-06-03T12:59:28+00:00

I am getting a warning about unchecked unsafe operations. I am not quite sure

  • 0

I am getting a warning about unchecked unsafe operations. I am not quite sure why I am getting this warning, but does anyone know what exception I should be trying to catch and where? I am assuming that I getting this warning because I am not checking for possible exceptions.

import java.awt.*;
import java.util.*;
import java.awt.event.*;
import javax.swing.*;

public class Tokenizer{

public static String split( String string )
{
    TreeSet tree = new TreeSet();
    StringTokenizer tokenizer =
    new StringTokenizer( string );

    while ( tokenizer.hasMoreTokens() )
    tree.add( tokenizer.nextToken() );

    String result = tree.toString();

    return result;
}//end of split

public static void main( String args[] )
{
    String str;
    Scanner input = new Scanner(System.in);
    System.out.println("Please input a string:");
    str = input.nextLine();
    split(str);

}//end of main
}//end of tokenizer
  • 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-06-03T12:59:31+00:00Added an answer on June 3, 2026 at 12:59 pm

    Your problem is that you aren’t using generics.

    You should have something like:

    Set<String> tree = new TreeSet<String> ();
    

    Or add @SuppressWarnings("unchecked") above your method (Not recommended)

    Edit:
    You can go here to get some more information on using generics:
    https://en.wikipedia.org/wiki/Generics_in_Java

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm getting this warning in my Output window (which doesn't affect functionality but I
How can I implement the ContactService interface without getting warning about unchecked conversions from
I am getting a warning about setText method when I am not even using
We keep having some customers getting a warning from AVG Antivirus about our application.
I keep getting 'warning: control reaches end of non-void function' with this code: -
When I am running this program I am getting warning array subscript has type
I am getting this warning from FxCop: 'RestartForm' contains field 'RestartForm.done' that is of
I'm getting a warning: Return makes pointer from integer without a cast for this
I am getting a warning I do not fully understand every time I run
I'm getting this warning from sccanf() : ../../../../ext/oedipus/oedipus.c:211: warning: conversion lacks type at end

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.