1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

java IPアドレス4オクテット目変更

Posted at

IPアドレス4オクテット目変更

sample.java
    private static String changeFourOctetIpAddress(final String ipAddress, final String fourOctet) {
        //カンマ区切りで取得
        final String[] split = ipAddress.split("\\.");
        return String.format("%s.%s.%s.%s", split[0], split[1], split[2], fourOctet);
    }
1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?