diff --git a/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java b/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java
new file mode 100644
index 000000000000..c12afe86cb81
--- /dev/null
+++ b/bindings/java/src/test/java/org/apache/opendal/test/OperatorUtf8DecodeTest.java
@@ -0,0 +1,56 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License. You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied. See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+
+package org.apache.opendal.test;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import java.nio.file.Path;
+import java.util.HashMap;
+import java.util.Map;
+import org.apache.opendal.BlockingOperator;
+import org.apache.opendal.Metadata;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.api.io.TempDir;
+
+public class OperatorUtf8DecodeTest {
+ @TempDir
+ private static Path tempDir;
+
+ /**
+ * Write file with non ascii name should succeed.
+ *
+ * @see More information
+ */
+ @Test
+ public void testWriteFileWithNonAsciiName() {
+ final Map conf = new HashMap<>();
+ conf.put("root", tempDir.toString());
+
+ try (final BlockingOperator op = BlockingOperator.of("fs", conf)) {
+ final String path = "βπ±δΈζ.test";
+ final byte[] content = "βπ±δΈζ".getBytes();
+ op.write(path, content);
+ final Metadata meta = op.stat(path);
+ assertThat(meta.isFile()).isTrue();
+ assertThat(meta.getContentLength()).isEqualTo(content.length);
+
+ op.delete(path);
+ }
+ }
+}
diff --git a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
index 7297b2345fa3..2354152c1989 100644
--- a/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
+++ b/bindings/java/src/test/java/org/apache/opendal/test/behavior/AsyncWriteTest.java
@@ -86,19 +86,4 @@ public void testStatFile() {
op().delete(path).join();
}
-
- /**
- * Write file with non ascii name should succeed.
- */
- @Test
- public void testWriteFileWithNonAsciiName() {
- final String path = "βπ±δΈζ.test";
- final byte[] content = generateBytes();
- op().write(path, content).join();
- final Metadata meta = op().stat(path).join();
- assertThat(meta.isFile()).isTrue();
- assertThat(meta.getContentLength()).isEqualTo(content.length);
-
- op().delete(path).join();
- }
}